-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathapp.module.ts
More file actions
39 lines (38 loc) · 1.17 KB
/
app.module.ts
File metadata and controls
39 lines (38 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { NgModule, ErrorHandler } from '@angular/core';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { MomentModule } from 'angular2-moment';
import { RedditReaderApp } from './app.component';
import { PostsPage } from '../pages/posts/posts';
import { CommentsPage } from '../pages/comments/comments'
import { CommentsList } from '../pages/comments/commentsList/commentsList'
import { RedditApiService } from "../providers/reddit-api-service";
import { SplashScreen } from '@ionic-native/splash-screen';
import { StatusBar } from '@ionic-native/status-bar';
import { BrowserModule } from "@angular/platform-browser";
import {HttpClientModule} from "@angular/common/http";
@NgModule({
declarations: [
RedditReaderApp,
PostsPage,
CommentsPage,
CommentsList
],
imports: [
BrowserModule,
HttpClientModule,
IonicModule.forRoot(RedditReaderApp),
MomentModule
],
bootstrap: [IonicApp],
entryComponents: [
RedditReaderApp,
PostsPage,
CommentsPage
],
providers: [
RedditApiService,
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}]
})
export class AppModule {}