finished calendar mobile page

This commit is contained in:
Hope87
2021-06-21 17:41:26 +03:00
parent 855744cf99
commit 169ffedb01
9 changed files with 187 additions and 26 deletions

View File

@ -8,6 +8,7 @@ const AuthPageForDevelopers = lazy(() => import('./pages/AuthPageForDevelopers')
const HomePage = lazy(() => import('./pages/HomePage'));
const CandidatePage = lazy(() => import('./pages/CandidatePage'));
const CalendarPage = lazy(() => import('./pages/CalendarPage'));
const ReportPage = lazy(() => import('./pages/ReportFormPage.js'));
const App = () => {
const [isAuth, setIsAuth] = useState(true);
@ -26,6 +27,9 @@ const App = () => {
<Route path="/calendar">
<CalendarPage />
</Route>
<Route path="/report">
<ReportPage />
</Route>
<Route>
<div>Not found page</div>
</Route>