Doppelkopf-Stats-Frontend/src/app/app.module.ts

30 lines
807 B
TypeScript
Raw Normal View History

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';
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-08-28 18:28:08 +00:00
@NgModule({
2022-09-02 12:39:24 +00:00
declarations: [
AppComponent,
HomeComponent,
StatsComponent,
GamenightComponent,
HeaderComponent,
ProfileComponent
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 {
}