This commit is contained in:
Amritanshu
2019-06-15 23:09:43 +05:30
parent 3dcf1c4c42
commit 459ab244ff
70 changed files with 2140 additions and 103 deletions

View File

@ -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},