Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
404 Bytes
import type { Route } from '@angular/router'
export const routes: Array<Route> = [
{
path: '',
redirectTo: 'basic',
pathMatch: 'full',
},
{
path: 'basic',
loadComponent: () =>
import('./components/basic-devtools-panel-example.component'),
},
{
path: 'lazy',
loadComponent: () =>
import('./components/lazy-load-devtools-panel-example.component'),
},
]