Quick fix for the expected class type in test
[vid.git] / vid-webpack-master / src / app / vlanTagging / vlan-tagging.routing.ts
1 import {Route} from "@angular/router";
2 import {FlagsResolve} from "../shared/resolvers/flag/flag.resolver";
3 import {VlanTaggingComponent} from "./vlan-tagging.component";
4
5 export const VlanTaggingRoutes: Route[] = [
6   {
7     path: 'vlan',
8     children: [
9       {
10         path: '',
11         component: VlanTaggingComponent,
12         resolve: {
13           flags: FlagsResolve
14         },
15       }
16     ]
17   }
18 ];
19