Guest User

Untitled

a guest
Oct 10th, 2016
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. import { NgModule } from '@angular/core';
  2. import { IonicApp, IonicModule } from 'ionic-angular';
  3. import { MyApp } from './app.component';
  4. import { AboutPage } from '../pages/about/about';
  5. import { ContactPage } from '../pages/contact/contact';
  6. import { HomePage } from '../pages/home/home';
  7. import { TabsPage } from '../pages/tabs/tabs';
  8. import {LoginPage} from "../pages/login/login";
  9. import {ResetPasswordPage} from "../pages/reset-password/reset-password";
  10. import {PostsPage} from "../pages/posts/posts";
  11. import {RegisterPage} from "../pages/register/register";
  12. import {UsersService} from "../providers/users-service";
  13. import {UserDetailPage} from "../pages/user-detail/user-detail";
  14.  
  15. @NgModule({
  16. declarations: [
  17. MyApp,
  18. AboutPage,
  19. ContactPage,
  20. HomePage,
  21. TabsPage,
  22. LoginPage,
  23. ResetPasswordPage,
  24. PostsPage,
  25. RegisterPage,
  26. UserDetailPage
  27. ],
  28. imports: [
  29. IonicModule.forRoot(MyApp)
  30. ],
  31. bootstrap: [IonicApp],
  32. entryComponents: [
  33. MyApp,
  34. AboutPage,
  35. ContactPage,
  36. HomePage,
  37. TabsPage,
  38. LoginPage,
  39. ResetPasswordPage,
  40. PostsPage,
  41. RegisterPage,
  42. UserDetailPage
  43.  
  44. ],
  45. providers: [UsersService]
  46. })
  47. export class AppModule {}
Add Comment
Please, Sign In to add comment