init to pos domain
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user