aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/app.module.ts
blob: 95208e1f5cc4b777c7d54addc2eab2c1d8a5a290 (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 './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';

@NgModule({
  declarations: [
    AppComponent,
    NeedPageComponent,
    HomePageComponent,
    FundingBasketComponent,
    CupboardComponent,
    NeedListComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }