2022-09-02 12:39:24 +00:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {BrowserModule} from '@angular/platform-browser';
|
2022-08-28 18:28:08 +00:00
|
|
|
|
2022-09-02 12:39:24 +00:00
|
|
|
import {AppRoutingModule} from './app-routing.module';
|
|
|
|
import {AppComponent} from './app.component';
|
2022-09-02 15:55:19 +00:00
|
|
|
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';
|
2022-09-10 11:39:23 +00:00
|
|
|
import {AddGameComponent} from './components/add-game/add-game.component';
|
|
|
|
import {MatchHistoryComponent} from './pages/match-history/match-history.component';
|
2022-08-28 18:28:08 +00:00
|
|
|
|
|
|
|
@NgModule({
|
2022-09-02 12:39:24 +00:00
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2022-09-02 15:55:19 +00:00
|
|
|
HomeComponent,
|
|
|
|
StatsComponent,
|
|
|
|
GamenightComponent,
|
|
|
|
HeaderComponent,
|
2022-09-10 11:38:36 +00:00
|
|
|
ProfileComponent,
|
2022-09-10 11:39:23 +00:00
|
|
|
AddGameComponent,
|
|
|
|
MatchHistoryComponent
|
2022-09-02 12:39:24 +00:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
AppRoutingModule
|
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent]
|
2022-08-28 18:28:08 +00:00
|
|
|
})
|
2022-09-02 12:39:24 +00:00
|
|
|
export class AppModule {
|
|
|
|
}
|