2016-09-20 20:30:39 +02:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {BrowserModule} from "@angular/platform-browser";
|
|
|
|
import {FormsModule} from "@angular/forms";
|
|
|
|
import {AppComponent} from "./app.component";
|
2016-09-15 12:40:13 +02:00
|
|
|
import {InputareaComponent} from "./inputarea.component";
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
FormsModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
InputareaComponent
|
|
|
|
],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule {
|
|
|
|
}
|