nycJSorg/angular-presentation

View on GitHub
libs/slides/src/lib/routing/slide-routes.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class SlidesRoutes {
  static get(Component: any) {
    return [
      { path: '', redirectTo: '0', pathMatch: 'full' },
      { path: ':id', component: Component },
      { path: '**', component: Component }
    ];
  }
}