Project

General

Profile

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