2017-04-29 11:26:20 +03:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { HttpModule } from '@angular/http';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import { AppComponent } from './app.cmp';
|
|
|
|
|
|
|
|
@NgModule({
|
2017-04-29 11:38:09 +03:00
|
|
|
imports: [ BrowserModule, HttpModule, FormsModule],
|
|
|
|
declarations: [ AppComponent ],
|
|
|
|
providers: [],
|
2017-04-29 11:26:20 +03:00
|
|
|
bootstrap: [ AppComponent ]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|