import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppComponent } from './app.component'; import { TodoListComponent } from './todo-list/todo-list.component'; import { TodoItemComponent } from './todo-item/todo-item.component'; import { TodoInputComponent } from './todo-input/todo-input.component'; import {FormsModule} from "@angular/forms"; @NgModule({ declarations: [ AppComponent, TodoListComponent, TodoItemComponent, TodoInputComponent ], imports: [ BrowserModule, FormsModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }