1
2 content_copy
3
4 const routes: Routes = [
5 {
6 path: 'customers',
7 loadChildren: () => import('./customers/customers.module').then(m => m.CustomersModule)
8 },
9 {
10 path: 'orders',
11 loadChildren: () => import('./orders/orders.module').then(m => m.OrdersModule)
12 },
13 {
14 path: '',
15 redirectTo: '',
16 pathMatch: 'full'
17 }
18];
19