diff --git a/projects/account/src/app/app-routing.module.ts b/projects/account/src/app/app-routing.module.ts index 6db63f5..9e8dbb1 100644 --- a/projects/account/src/app/app-routing.module.ts +++ b/projects/account/src/app/app-routing.module.ts @@ -1,12 +1,14 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; +import { CreateAccountComponent } from './create-account/create-account.component'; import { DeviceComponent } from './device/device.component'; import { PageNotFoundComponent } from 'page-not-found'; import { ProfileComponent } from './profile/profile.component'; // import { SkillComponent } from './skill/skill.component'; const routes: Routes = [ + { path: 'create-account', component: CreateAccountComponent }, { path: 'device', component: DeviceComponent }, { path: 'profile', component: ProfileComponent }, // { path: 'skill', component: ProfileComponent },