Mercurial > hg > ugly-duckling
view src/app/app.module.ts @ 0:340ce94899fd
chore: initial commit from angular-cli
_ _ _
__ _ _ __ __ _ _ _| | __ _ _ __ ___| (_)
/ _ | _ \ / _ | | | | |/ _ | __|____ / __| | |
| (_| | | | | (_| | |_| | | (_| | | |_____| (__| | |
\____|_| |_|\__ |\____|_|\____|_| \___|_|_|
|___/
author | angular-cli <angular-cli@angular.io> |
---|---|
date | Tue, 25 Oct 2016 11:40:57 +0100 |
parents | |
children | 44c99e3cb108 |
line wrap: on
line source
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppComponent } from './app.component'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule, HttpModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }