Running tables: Initial working sample just shows a row of buttons

This commit is contained in:
Amritanshu
2019-06-15 13:04:25 +05:30
parent 5093bdc391
commit 3dcf1c4c42
8 changed files with 143 additions and 0 deletions

View File

@ -9,6 +9,10 @@ const routes: Routes = [
path: 'guest-book',
loadChildren: () => import('./guest-book/guest-book.module').then(mod => mod.GuestBookModule)
},
{
path: 'running-tables',
loadChildren: () => import('./running-tables/running-tables.module').then(mod => mod.RunningTablesModule)
},
{
path: 'tables',
loadChildren: () => import('./tables/tables.module').then(mod => mod.TableModule)