Ajout d'un exemple pour les appels http.

This commit is contained in:
Florian THIERRY
2023-02-21 15:25:03 +01:00
parent 4002d4226a
commit cfd4838d17
18 changed files with 243 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {NetworkCallComponent} from "./network-call.component";
import {CoreModule} from "../core/core.module";
import {HttpClientModule} from "@angular/common/http";
@NgModule({
declarations: [
NetworkCallComponent
],
imports: [
CommonModule,
CoreModule,
HttpClientModule
],
exports: [
NetworkCallComponent
]
})
export class NetworkCallModule {
}