14 lines
360 B
TypeScript
14 lines
360 B
TypeScript
|
|
import { Route } from '@angular/router';
|
||
|
|
|
||
|
|
export const POS_ROUTES = {
|
||
|
|
path: 'pos',
|
||
|
|
loadComponent: () => import('./layouts/layout.component').then((m) => m.PosLayoutComponent),
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
loadComponent: () =>
|
||
|
|
import('./modules/landing/views/root.component').then((m) => m.PosLandingComponent),
|
||
|
|
},
|
||
|
|
],
|
||
|
|
} as Route;
|