import {NgModule} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {AppRoutingModule} from './app-routing.module'; import {AppComponent} from './app.component'; import {HomeComponent} from './pages/home/home.component'; import {StatsComponent} from './pages/stats/stats.component'; import {GamenightComponent} from './pages/gamenight/gamenight.component'; import {HeaderComponent} from './components/header/header.component'; import {ProfileComponent} from './components/profile/profile.component'; import {AddGameComponent} from './components/add-game/add-game.component'; import {MatchHistoryComponent} from './pages/match-history/match-history.component'; @NgModule({ declarations: [ AppComponent, HomeComponent, StatsComponent, GamenightComponent, HeaderComponent, ProfileComponent, AddGameComponent, MatchHistoryComponent ], imports: [ BrowserModule, AppRoutingModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }