UNPKG

ipsos-components

Version:

Material Design components for Angular

11 lines (8 loc) 405 B
import {ModuleWithProviders} from '@angular/core'; import {Routes, RouterModule} from '@angular/router'; import {ViewerComponent} from './viewer/viewer.component'; const SCREENSHOT_ROUTES: Routes = [ {path: '', component: ViewerComponent, pathMatch: 'full'}, {path: ':id', component: ViewerComponent} ]; export const routing: ModuleWithProviders = RouterModule.forRoot(SCREENSHOT_ROUTES);