blob: ee2d5782d99761ebcbd68c635c1f3d1348a25dff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
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 './need-page/need-page.component';
import { HomePageComponent } from './home-page/home-page.component';
import { FundingBasketComponent } from './funding-basket/funding-basket.component';
import { CupboardComponent } from './cupboard/cupboard.component';
import { NeedListComponent } from './need-list/need-list.component';
@NgModule({
declarations: [
AppComponent,
NeedPageComponent,
HomePageComponent,
FundingBasketComponent,
CupboardComponent,
NeedListComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
|