feat: adds table view
feat: adds table view
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user