const { useEffect } = React; const { DirectionC } = window; const ACCENT = '#e8ff3a'; function App() { useEffect(() => { window.scrollTo(0, 0); }, []); const style = { '--accent': ACCENT, '--accentC': ACCENT, }; return (
); } ReactDOM.createRoot(document.getElementById('root')).render();