import {HttpClientModule} from '@angular/common/http'; import {BrowserAnimationsModule} from "@angular/platform-browser/animations"; import {BrowserModule} from '@angular/platform-browser'; import {NgModule} from '@angular/core'; import {TestComponent} from './test.component'; @NgModule({ declarations: [ TestComponent ], imports: [ HttpClientModule, BrowserAnimationsModule, BrowserModule, ], providers: [], bootstrap: [TestComponent] }) export class TestModule { }