@@ -4,6 +4,14 @@ import { StatusBar } from '@ionic-native/status-bar';
44import { SplashScreen } from '@ionic-native/splash-screen' ;
55
66import { HomePage } from '../pages/home/home' ;
7+ import { LoginPage } from '../pages/login/login' ;
8+ import { RegisterPage } from '../pages/register/register' ;
9+ import { WizardPage } from '../pages/wizard/wizard' ;
10+ import { DashboardPage } from '../pages/dashboard/dashboard' ;
11+ import { ProfilePage } from '../pages/profile/profile' ;
12+ import { TransitionPage } from '../pages/transition/transition' ;
13+ import { AssessmentPage } from '../pages/assessment/assessment' ;
14+ import { TimelinePage } from '../pages/timeline/timeline' ;
715
816@Component ( {
917 templateUrl : 'app.html'
@@ -20,7 +28,15 @@ export class MyApp {
2028
2129 // used for an example of ngFor and navigation
2230 this . pages = [
23- { title : 'Home' , component : HomePage }
31+ { title : 'Home' , component : HomePage } ,
32+ { title : 'Login' , component : LoginPage } ,
33+ { title : 'Register' , component : RegisterPage } ,
34+ { title : 'Wizard' , component : WizardPage } ,
35+ { title : 'Dashboard' , component : DashboardPage } ,
36+ { title : 'Profile' , component : ProfilePage } ,
37+ { title : 'Transition' , component : TransitionPage } ,
38+ { title : 'Assessment' , component : AssessmentPage } ,
39+ { title : 'Timeline' , component : TimelinePage }
2440 ] ;
2541
2642 }
0 commit comments