Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 58x 58x | import type { RouteObject } from 'react-router-dom'
import { LlmConfigsListPage } from './LlmConfigsListPage'
import { LlmConfigDetailPage } from './LlmConfigDetailPage'
import { CrudRoute } from '@/layers/L2W/routes/CrudRoute'
export const llmConfigRoutes: RouteObject[] = [
{ path: 'llm-configs', element: <LlmConfigsListPage />, children: [
{ path: 'add', element: <CrudRoute owner="llm-configs" mode="add" /> },
]},
{ path: 'llm-configs/:id', element: <LlmConfigDetailPage />, children: [
{ path: 'edit', element: <CrudRoute owner="llm-configs" mode="edit" /> },
]},
]
|