Advertisement
bence04

Untitled

Jun 30th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import { provideRouter, RouterConfig } from '@angular/router';
  2. import { MainComponent } from './main.component';
  3.  
  4. const routes: RouterConfig = [
  5. {
  6. path: '/main',
  7. component: MainComponent
  8. }
  9. ];
  10.  
  11. export const APP_ROUTER_PROVIDERS = [
  12. provideRouter(routes)
  13. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement