Answers for "Setting up HttpClient"

0

Setting up HttpClient

import { HttpClientModule } from '@angular/common/http';
    @NgModule({
    declarations: [
    AppComponent
    ],
    imports: [
    BrowserModule,
    HttpClientModule
    ],
    bootstrap: [AppComponent]
    })
    export class AppModule { }
Posted by: Guest on June-10-2021

Browse Popular Code Answers by Language