profile form

This commit is contained in:
kurpfish
2021-08-16 16:19:50 +03:00
parent fd695627e7
commit e8f6c315f4
9 changed files with 80 additions and 10 deletions

View File

@ -24,9 +24,9 @@ const App = () => {
<AuthPageForPartners />
</Route>
<ProtectedRoute path='/' exact component={HomePage} />
<ProtectedRoute path='/candidate/:id' component={CandidatePage} />
<ProtectedRoute exact path='/candidate/:id' component={CandidatePage} />
<ProtectedRoute path='/calendar' component={CalendarPage} />
<ProtectedRoute path='/form' component={FormPage} />
<ProtectedRoute exact path='/candidate/:id/form' component={FormPage} />
<ProtectedRoute path='/report' component={ReportPage} />
<ProtectedRoute component={()=><div>Page not found</div>} />
</Switch>