Skip to content

Instantly share code, notes, and snippets.

@teomanofficial
Created October 24, 2023 22:00
Show Gist options
  • Save teomanofficial/608b971c1956c0cd0ee140db84ec8f5f to your computer and use it in GitHub Desktop.
Save teomanofficial/608b971c1956c0cd0ee140db84ec8f5f to your computer and use it in GitHub Desktop.
Import FormsModule Into To The Module
import { FormsModule } from "@angular/forms";
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment