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 { }