Project

General

Profile

1
/**
2
 * Created by stefania on 8/29/16.
3
 */
4
import {ModuleWithProviders} from "@angular/core";
5
import {RouterModule, Routes} from "@angular/router";
6

    
7
const appRoutes: Routes = [
8
  {
9
    path: '',
10
    redirectTo: '/home',
11
    pathMatch: 'full'
12
  },
13
];
14

    
15
export const appRoutingProviders: any[] = [];
16

    
17
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);
(4-4/7)