1import { NgModule } from '@angular/core';
2import { BrowserModule } from '@angular/platform-browser';
3import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4import { AppComponent } from './app.component';
5
6@NgModule({
7 imports: [
8 BrowserModule,
9 FormsModule,
10 ReactiveFormsModule
11 ],
12 declarations: [
13 AppComponent
14 ],
15 bootstrap: [AppComponent]
16})
17
18export class AppModule { }
19