21 lines
526 B
TypeScript
21 lines
526 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { AppShellComponent } from './layout/app-shell/app-shell.component';
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', pathMatch: 'full', redirectTo: 'world' },
|
|
{
|
|
path: '',
|
|
component: AppShellComponent,
|
|
children: [
|
|
{
|
|
path: 'world',
|
|
loadComponent: () =>
|
|
import('./features/world/world-page.component').then(
|
|
(module) => module.WorldPageComponent,
|
|
),
|
|
},
|
|
],
|
|
},
|
|
{ path: '**', redirectTo: 'world' },
|
|
];
|