Matteo Scandolo | d819c92 | 2016-12-02 14:06:14 -0800 | [diff] [blame^] | 1 | import {NgModule} from '@angular/core'; |
2 | import {BrowserModule} from '@angular/platform-browser'; | ||||
3 | import {routing, RootComponent} from './routes'; | ||||
4 | |||||
5 | import {HelloComponent} from './hello'; | ||||
6 | |||||
7 | @NgModule({ | ||||
8 | imports: [ | ||||
9 | BrowserModule, | ||||
10 | routing | ||||
11 | ], | ||||
12 | declarations: [ | ||||
13 | RootComponent, | ||||
14 | HelloComponent | ||||
15 | ], | ||||
16 | bootstrap: [RootComponent] | ||||
17 | }) | ||||
18 | export class AppModule {} |