Project

General

Profile

1 61381 k.triantaf
import { NgModule} from '@angular/core';
2
import { CommonModule } from '@angular/common';
3
import { RouterModule } from '@angular/router';
4
import {ThemeRoutingModule} from "./theme-routing.module";
5
import {ThemeComponent} from "./theme.component";
6
7
@NgModule({
8
  imports: [
9
    CommonModule, RouterModule,
10
    ThemeRoutingModule
11
  ],
12
  declarations: [
13
    ThemeComponent
14
  ],
15
  exports: [
16
    ThemeComponent
17
  ]
18
})
19
export class ThemeModule {}