ConvoyPanel/resources/scripts/routers/AdminCotermRouter.tsx
2023-11-30 22:59:23 -06:00

21 lines
No EOL
491 B
TypeScript

import { lazyLoad } from '@/routers/helpers'
import { Route } from '@/routers/router'
import { lazy } from 'react'
export const routes: Route[] = [
{
path: 'coterms',
children: [
{
index: true,
element: lazyLoad(
lazy(
() =>
import('@/components/admin/coterms/CotermContainer')
)
),
},
],
},
]