All files / features / llm-configs routes.tsx

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

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      68x   68x                
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" /> },
  ]},
]