players.routing.ts 299 Bytes
import { Routes } from '@angular/router';
import { ViewPlayersComponent } from './view-players/view-player.component';

export const PlayersRoutes: Routes = [
  {
    path: 'view-players',
    component: ViewPlayersComponent,
    data: { title: 'MANAGE-PLAYERS', breadcrumb: 'VIEW-PLAYERS'}
  },
];