view ReportPage

This commit is contained in:
2023-01-23 14:59:57 +03:00
parent 2a8c26c3c6
commit 107a00b915
6 changed files with 446 additions and 9 deletions

View File

@ -18,6 +18,7 @@ import {InstructionPage} from './pages/quiz/InstructionPage'
import {ResultPage} from './pages/quiz/ResultPage'
import {Profile} from './pages/Profile/Profile.js'
import {Summary} from './pages/Summary/Summary'
import {ViewReport} from './pages/ViewReport/ViewReport'
import './fonts/stylesheet.css'
import 'bootstrap/dist/css/bootstrap.min.css'
@ -55,6 +56,7 @@ const App = () => {
<Route index element={<Profile/>}/>
<Route exact path='calendar' element={<ProfileCalendar/>}/>
<Route exact path='summary' element={<Summary/>}/>
<Route exact path='view' element={<ViewReport/>}/>
</Route>
<Route path="*" element={<Navigate to="/" replace/>}/>