aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.module.ts
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2025-02-26 21:31:52 -0500
committersowgro <tpoke.ferrari@gmail.com>2025-02-26 21:31:52 -0500
commit8811480c199b7b2a97ee0532d3488ed9512b6f37 (patch)
tree3c32ee0a82516492f0954f88404326e368e4c7f1 /ufund-ui/src/app/app.module.ts
parent8a2d6c332a089c2dbb7351514499e16f343959ff (diff)
downloadJellySolutions-8811480c199b7b2a97ee0532d3488ed9512b6f37.tar.gz
JellySolutions-8811480c199b7b2a97ee0532d3488ed9512b6f37.tar.bz2
JellySolutions-8811480c199b7b2a97ee0532d3488ed9512b6f37.zip
get angular services working
Diffstat (limited to '')
-rw-r--r--ufund-ui/src/app/app.module.ts51
1 files changed, 27 insertions, 24 deletions
diff --git a/ufund-ui/src/app/app.module.ts b/ufund-ui/src/app/app.module.ts
index 95208e1..d818841 100644
--- a/ufund-ui/src/app/app.module.ts
+++ b/ufund-ui/src/app/app.module.ts
@@ -1,28 +1,31 @@
-import { NgModule } from '@angular/core';
-import { BrowserModule } from '@angular/platform-browser';
+import {NgModule} from '@angular/core';
+import {BrowserModule} from '@angular/platform-browser';
-import { AppRoutingModule } from './app-routing.module';
-import { AppComponent } from './app.component';
-import { NeedPageComponent } from './components/need-page/need-page.component';
-import { HomePageComponent } from './components/home-page/home-page.component';
-import { FundingBasketComponent } from './components/funding-basket/funding-basket.component';
-import { CupboardComponent } from './components/cupboard/cupboard.component';
-import { NeedListComponent } from './components/need-list/need-list.component';
+import {AppRoutingModule} from './app-routing.module';
+import {AppComponent} from './app.component';
+import {NeedPageComponent} from './components/need-page/need-page.component';
+import {HomePageComponent} from './components/home-page/home-page.component';
+import {FundingBasketComponent} from './components/funding-basket/funding-basket.component';
+import {CupboardComponent} from './components/cupboard/cupboard.component';
+import {NeedListComponent} from './components/need-list/need-list.component';
+import {HttpClientModule} from '@angular/common/http';
@NgModule({
- declarations: [
- AppComponent,
- NeedPageComponent,
- HomePageComponent,
- FundingBasketComponent,
- CupboardComponent,
- NeedListComponent
- ],
- imports: [
- BrowserModule,
- AppRoutingModule
- ],
- providers: [],
- bootstrap: [AppComponent]
+ declarations: [
+ AppComponent,
+ NeedPageComponent,
+ HomePageComponent,
+ FundingBasketComponent,
+ CupboardComponent,
+ NeedListComponent
+ ],
+ imports: [
+ BrowserModule,
+ AppRoutingModule,
+ HttpClientModule,
+ ],
+ providers: [],
+ bootstrap: [AppComponent]
})
-export class AppModule { }
+export class AppModule {
+}