forgeplus-react/config/routes/paperlibrary.ts

22 lines
597 B
TypeScript

export const Paperlibrary = {
path: '/paperlibrary',
component: '@/layouts/SimpleLayouts',
routes: [
{
path: '/paperlibrary',
component: '@/pages/Paperlibrary/index',
},
{
path: '/paperlibrary/see/:id',
component: '@/pages/Paperlibrary/See/index',
},
{
path: '/paperlibrary/edit/:id',
component: '@/pages/Paperlibrary/Edit/index',
},
{
path: '/paperlibrary/edit_select/:id',
component: '@/pages/Problemset/index',
},
],
}