Add Match History component and update header menu.

This commit is contained in:
2022-09-09 21:50:11 +02:00
parent 9c3547f712
commit 080fa80f03
7 changed files with 55 additions and 2 deletions
+3 -1
View File
@@ -3,11 +3,13 @@ import {RouterModule, Routes} from '@angular/router';
import {GamenightComponent} from './pages/gamenight/gamenight.component';
import {HomeComponent} from './pages/home/home.component';
import {StatsComponent} from './pages/stats/stats.component';
import {MatchHistoryComponent} from "./pages/match-history/match-history.component";
const routes: Routes = [
{path: '', component: HomeComponent, pathMatch: 'full'},
{path: 'gamenight', component: GamenightComponent},
{path: 'stats', component: StatsComponent}
{path: 'stats', component: StatsComponent},
{path: 'match-history', component: MatchHistoryComponent}
];
@NgModule({