39 lines
918 B
TypeScript
39 lines
918 B
TypeScript
import App from '@/App'
|
|
import { lazy } from 'react'
|
|
import { createBrowserRouter } from 'react-router-dom'
|
|
|
|
const router = createBrowserRouter([
|
|
{
|
|
path: '/',
|
|
element: <App />,
|
|
children: [
|
|
{
|
|
path: 'question-bank',
|
|
Component: lazy(() => import('@views/question-bank'))
|
|
},
|
|
{
|
|
path: 'brush-question/:id',
|
|
// element: <BrushQuestions />
|
|
Component: lazy(() => import('@views/brush-questions'))
|
|
},
|
|
{
|
|
path: 'upload-question',
|
|
// element: <UploadQuestions />
|
|
Component: lazy(() => import('@views/upload-questions'))
|
|
},
|
|
{
|
|
path: 'login',
|
|
// element: <Login />
|
|
Component: lazy(() => import('@views/login'))
|
|
},
|
|
{
|
|
path: 'user-info',
|
|
// element: <UserInfo />
|
|
Component: lazy(() => import('@views/user-info'))
|
|
}
|
|
]
|
|
}
|
|
])
|
|
|
|
export default router
|