I\'m new in Angular. I started Tour of Heroes to learn it. So, I am created an app.component with two-way binding.
app.component
two-way
import { Component
Remove the FormsModule from Declaration:[] and Add the FormsModule in imports:[]
@NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule ], providers: [], bootstrap: [AppComponent] })