created services readjson

This commit is contained in:
2023-03-07 15:54:42 +01:00
parent 869935dc40
commit f15b2e91aa
7 changed files with 157 additions and 45 deletions

View File

@@ -7,6 +7,7 @@ import { HomeComponent } from './home/home.component';
import { ListComponent } from './list/list.component';
import { DetailComponent } from './detail/detail.component';
import {FormsModule} from "@angular/forms";
import {HttpClientModule} from "@angular/common/http";
@NgModule({
declarations: [
@@ -18,7 +19,8 @@ import {FormsModule} from "@angular/forms";
imports: [
BrowserModule,
AppRoutingModule,
FormsModule
FormsModule,
HttpClientModule,
],
providers: [],
bootstrap: [AppComponent]