Final state from MSSE692

This commit is contained in:
Kerry Johnson 2021-03-13 08:45:04 -07:00
parent 5f18537bd5
commit 43c7198f22
41 changed files with 816 additions and 218 deletions

View file

@ -14,6 +14,16 @@ const routes: Routes = [{
path: 'dashboard',
component: ECommerceComponent,
},
{
path: 'user',
loadChildren: () => import('../modules/user/user.module')
.then(m => m.UserModule)
},
{
path: 'org',
loadChildren: () => import('../modules/organization/organization.module')
.then(m => m.OrganizationModule)
},
{
path: 'iot-dashboard',
component: DashboardComponent,