import { BrowserRouter, Routes, Route, useLocation } from "react-router-dom"; import Editor from "./pages/Editor"; import Survey from "./pages/Survey"; import BugReport from "./pages/BugReport"; import Shortcuts from "./pages/Shortcuts"; import Templates from "./pages/Templates"; import { useEffect } from "react"; import LandingPage from "./pages/LandingPage"; const Wrapper = ({ children }) => { const location = useLocation(); useEffect(() => { window.scroll(0, 0); }, [location.pathname]); return children; }; function App() { return ( } /> } /> } /> } /> } /> } /> ); } export default App;