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'; @NgModule({ declarations: [ AppComponent, HomeComponent, StatsComponent, GamenightComponent, HeaderComponent, ProfileComponent ], imports: [ BrowserModule, AppRoutingModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }