2016-08-09 11:48:07 -07:00

17 lines
379 B
TypeScript

// #docregion
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { TodoAppComponent } from './todo_app';
@NgModule({
imports: [
BrowserModule,
FormsModule
],
declarations: [ TodoAppComponent ],
bootstrap: [ TodoAppComponent ]
})
export class AppModule { }