Start application

This commit is contained in:
Lallois
2025-11-13 15:40:43 +01:00
commit 91876effb4
38 changed files with 9938 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: '',
pathMatch: 'full',
redirectTo: '/customers'
},
{
path:'customers',
loadComponent: () => import('./pages/customers/customers').then(x => x.Customers)
},
{
path:'staff',
loadComponent: () => import('./pages/staff/staff').then(x => x.Staff)
},
{
path:'opportunities',
loadComponent: () => import('./pages/opportunities/opportunities').then(x => x.Opportunities)
},
{
path:'providers',
loadComponent: () => import('./pages/providers/providers').then(x => x.Providers)
}
];