add protected routes for submissions
This commit is contained in:
parent
edc856bb81
commit
c9d6118f0c
48
src/app.tsx
48
src/app.tsx
@ -4,36 +4,42 @@ import './app.css'
|
||||
import { DefaultLayout } from './layouts'
|
||||
import routes from './routes'
|
||||
import "yet-another-react-lightbox/styles.css";
|
||||
import { Login, NotFound } from './pages'
|
||||
import { Login, NotFound, Submissions } from './pages'
|
||||
import { Provider } from 'react-redux'
|
||||
import { persistore, store } from './store/config'
|
||||
import { PersistGate } from 'redux-persist/integration/react'
|
||||
import { ProtectedRoute } from './routes/ProtectedRoute'
|
||||
|
||||
|
||||
export function App() {
|
||||
return (
|
||||
<>
|
||||
<Provider store={store}>
|
||||
<PersistGate persistor={persistore}>
|
||||
<Router>
|
||||
<Routes>
|
||||
<Route path='/login' element={<Login />} />
|
||||
<Route element={<DefaultLayout />}>
|
||||
{routes.map(({ path, name, element }) => (
|
||||
<>
|
||||
<Route
|
||||
path={path}
|
||||
id={name}
|
||||
element={element}
|
||||
/>
|
||||
</>
|
||||
))}
|
||||
</Route>
|
||||
<Provider store={store}>
|
||||
<PersistGate persistor={persistore}>
|
||||
<Router>
|
||||
<Routes>
|
||||
<Route path='/login' element={<Login />} />
|
||||
<Route element={<DefaultLayout />}>
|
||||
{routes.map(({ path, name, element }) => (
|
||||
<>
|
||||
<Route
|
||||
path={path}
|
||||
id={name}
|
||||
element={element}
|
||||
/>
|
||||
</>
|
||||
))}
|
||||
<Route path='/submissions' id='submissions' element={
|
||||
<ProtectedRoute>
|
||||
<Submissions />
|
||||
</ProtectedRoute>
|
||||
} />
|
||||
<Route path="*" element={<NotFound />} />
|
||||
</Routes>
|
||||
</Router>
|
||||
</PersistGate>
|
||||
</Provider>
|
||||
</Route>
|
||||
</Routes>
|
||||
</Router>
|
||||
</PersistGate>
|
||||
</Provider>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
9
src/pages/Submissions/index.tsx
Normal file
9
src/pages/Submissions/index.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
function Submissions() {
|
||||
return (
|
||||
<div className={'content main-content'}>
|
||||
<h1>Submssions</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default Submissions;
|
Loading…
Reference in New Issue
Block a user