Hello so I have all the imports in my appModule, but the form components are still erroring and not working. Can someone advise?
app.module:
@NgModule({
imports: [
BrowserModule,
CommonModule,
FormsModule,
ReactiveFormsModule,
AppRoutingModule,
BrowserAnimationsModule,
HttpClientModule,
MatFormFieldModule, MatInputModule, MatTableModule, MatPaginatorModule, MatSortModule
],
declarations: [
AppComponent,
SearchComponent,
ExportComponent
],
First error:
Second error:

