mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { NgaComponentsModule } from '@nga/theme';
|
||
|
|
|
||
|
|
import { SharedModule } from '../../shared.module';
|
||
|
|
|
||
|
|
import { ComponentsRoutingModule, routedComponents } from './components-routing.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
SharedModule,
|
||
|
|
NgaComponentsModule,
|
||
|
|
ComponentsRoutingModule,
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
...routedComponents,
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class ComponentsModule { }
|