import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; import { HttpClientModule} from '@angular/common/http' import { AppComponent } from './app.component'; import { TodoFormComponent } from './todo-form/todo-form.component'; import { TodosComponent } from './todos/todos.component'; import { LoadingRipleComponent } from './centraldata/loading-indicator/loading-riple.component'; import { AuthenticationComponent } from './authentication/authentication.component'; import { AppRoutingModule } from './app-routing.module'; @NgModule({ declarations: [ AppComponent, TodoFormComponent, TodosComponent, LoadingRipleComponent, AuthenticationComponent ], imports: [ BrowserModule, AppRoutingModule, FormsModule, HttpClientModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }