Tax done
This commit is contained in:
@ -9,6 +9,14 @@ const routes: Routes = [
|
||||
path: 'guest-book',
|
||||
loadChildren: () => import('./guest-book/guest-book.module').then(mod => mod.GuestBookModule)
|
||||
},
|
||||
{
|
||||
path: 'products',
|
||||
loadChildren: () => import('./product/product.module').then(mod => mod.ProductModule)
|
||||
},
|
||||
{
|
||||
path: 'product-groups',
|
||||
loadChildren: () => import('./product-group/product-group.module').then(mod => mod.ProductGroupModule)
|
||||
},
|
||||
{
|
||||
path: 'running-tables',
|
||||
loadChildren: () => import('./running-tables/running-tables.module').then(mod => mod.RunningTablesModule)
|
||||
@ -17,6 +25,10 @@ const routes: Routes = [
|
||||
path: 'tables',
|
||||
loadChildren: () => import('./tables/tables.module').then(mod => mod.TableModule)
|
||||
},
|
||||
{
|
||||
path: 'taxes',
|
||||
loadChildren: () => import('./taxes/taxes.module').then(mod => mod.TaxesModule)
|
||||
},
|
||||
{path: 'login', component: LoginComponent},
|
||||
{path: 'logout', component: LogoutComponent},
|
||||
{path: '', component: HomeComponent},
|
||||
|
||||
Reference in New Issue
Block a user