mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-20 08:16:11 +01:00
24 lines
560 B
TypeScript
24 lines
560 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
import { NgaModule } from '../../theme/nga.module';
|
||
|
|
|
||
|
|
import { routing } from './components.routing';
|
||
|
|
import { Components } from './components.component';
|
||
|
|
import { TreeView } from './components/treeView/treeView.component';
|
||
|
|
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
NgaModule,
|
||
|
|
routing
|
||
|
|
],
|
||
|
|
declarations: [
|
||
|
|
Components,
|
||
|
|
TreeView
|
||
|
|
]
|
||
|
|
})
|
||
|
|
export default class ComponentsModule {}
|