added route to create account
parent
c2460cb9e8
commit
786b5863e0
|
@ -1,12 +1,14 @@
|
||||||
import { NgModule } from '@angular/core';
|
import { NgModule } from '@angular/core';
|
||||||
import { Routes, RouterModule } from '@angular/router';
|
import { Routes, RouterModule } from '@angular/router';
|
||||||
|
|
||||||
|
import { CreateAccountComponent } from './create-account/create-account.component';
|
||||||
import { DeviceComponent } from './device/device.component';
|
import { DeviceComponent } from './device/device.component';
|
||||||
import { PageNotFoundComponent } from 'page-not-found';
|
import { PageNotFoundComponent } from 'page-not-found';
|
||||||
import { ProfileComponent } from './profile/profile.component';
|
import { ProfileComponent } from './profile/profile.component';
|
||||||
// import { SkillComponent } from './skill/skill.component';
|
// import { SkillComponent } from './skill/skill.component';
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
|
{ path: 'create-account', component: CreateAccountComponent },
|
||||||
{ path: 'device', component: DeviceComponent },
|
{ path: 'device', component: DeviceComponent },
|
||||||
{ path: 'profile', component: ProfileComponent },
|
{ path: 'profile', component: ProfileComponent },
|
||||||
// { path: 'skill', component: ProfileComponent },
|
// { path: 'skill', component: ProfileComponent },
|
||||||
|
|
Loading…
Reference in New Issue