Files
psp_panel/src/tenants/tis/app.routes.ts
T

20 lines
554 B
TypeScript
Raw Normal View History

import { POS_ROUTES } from '@/domains/pos/routes';
2026-05-04 20:02:10 +03:30
import { AppLayout } from '@/layout/default/app.layout.component';
import { AuthComponent } from '@/modules/auth/pages/auth.component';
import { Notfound } from '@/pages/notfound/notfound.component';
import { Routes } from '@angular/router';
export const appRoutes: Routes = [
2026-05-04 20:02:10 +03:30
{
path: '',
component: AppLayout,
children: [POS_ROUTES],
},
{
path: 'auth',
component: AuthComponent,
},
{ path: 'notfound', component: Notfound },
{ path: '**', redirectTo: '/notfound' },
];