2025-02-02 15:48:46 +01:00
|
|
|
import { Routes } from '@angular/router';
|
2025-02-02 19:59:34 +01:00
|
|
|
import { DashboardComponent } from '@app/views/dashboard/dashboard.component';
|
2025-02-02 15:48:46 +01:00
|
|
|
|
2025-03-05 23:20:05 +01:00
|
|
|
export const routes: Routes = [{ path: '', component: DashboardComponent, title: 'Player Overview'}];
|
|
|
|
|
|
|
|
|