mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
17 lines
372 B
TypeScript
17 lines
372 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
|
||
|
|
import { NgxSharedModule } from '../../@shared/shared.module';
|
||
|
|
|
||
|
|
import { NgxUiFeaturesRoutingModule, routedComponents } from './ui-features-routing.module';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
NgxSharedModule,
|
||
|
|
NgxUiFeaturesRoutingModule,
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
...routedComponents,
|
||
|
|
],
|
||
|
|
})
|
||
|
|
export class NgxUiFeaturesModule { }
|