6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { DashboardComponent } from '@app/views/dashboard/dashboard.component';
|
|
|
|
export const routes: Routes = [{ path: '', component: DashboardComponent, title: 'Player Overview'}];
|
|
|
|
|