Project

General

Profile

1
import { NgModule}      from '@angular/core';
2
import { RouterModule } from '@angular/router';
3
import {ThemeComponent} from "./theme.component";
4

    
5

    
6
@NgModule({
7
  imports: [
8
    RouterModule.forChild([
9
      { path: '', component: ThemeComponent}
10
    ])
11
  ]
12
})
13
export class ThemeRoutingModule {
14
}
(1-1/4)