feat: adds table view

feat: adds table view
This commit is contained in:
2022-12-23 10:22:05 +01:00
parent e9472972cd
commit 75b20dc508
18 changed files with 229 additions and 27 deletions

View File

@@ -22,8 +22,8 @@ const routes: Routes = [
canActivate: [AuthGuard],
},
{
path: 'followings',
loadChildren: () => import('./followings/followings.module').then(m => m.FollowingsModule),
path: 'list',
loadChildren: () => import('./followings-list/followings-list.module').then(m => m.FollowingsListModule),
canActivate: [AuthGuard],
},
{
@@ -31,6 +31,11 @@ const routes: Routes = [
loadChildren: () => import('./followings-matrix/followings-matrix.module').then(m => m.FollowingsMatrixModule),
canActivate: [AuthGuard],
},
{
path: 'table',
loadChildren: () => import('./followings-table/followings-table.module').then(m => m.FollowingsTableModule),
canActivate: [AuthGuard],
},
];
@NgModule({