blob: 2fdaf946e4ec4848d2cc6682d7fcad5cab9a77d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { NgModule } from '@angular/core';
import { ThemeModule } from '../../@theme/theme.module';
import { ConfigRoutingModule, routedConfig } from './config-routing.module';
@NgModule({
imports: [
ThemeModule,
ConfigRoutingModule,
],
declarations: [
...routedConfig,
]
})
export class ConfigModule { }
|