Angular - HTTP Client
Examine this Angular module code snippet:
What is the issue with this setup?
import { NgModule } from '@angular/core';
import { HttpClientModule } from '@angular/common/http';
@NgModule({
imports: [HttpClientModule],
providers: [HttpClientModule]
})
export class AppModule {}What is the issue with this setup?
