import { Routes, Route, BrowserRouter } from 'react-router-dom'; import { TestColors } from './components/TestColors/TestColors'; import TestApiButton from './components/TestApiButton/TestApiButton'; import { Welcome } from './views/Welcome'; import { Provider } from 'react-redux'; import { store } from './stores/store'; import { DocumentPage } from './views/DocumentPage'; import { BoardPage } from './views/BoardPage'; import { GridPage } from './views/GridPage'; import { LoginPage } from './views/LoginPage'; import { ProtectedRoutes } from './components/auth/ProtectedRoutes'; import { SignUpPage } from './views/SignUpPage'; import { ConfirmAccountPage } from './views/ConfirmAccountPage'; const App = () => { // const location = useLocation(); // console.log(location); return ( }> } /> } /> } /> } /> } /> } /> }> }> }> Not Found ); }; export default App;