25 lines
607 B
TypeScript
25 lines
607 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { NgaModule } from '../../theme/nga.module';
|
|
import { TreeModule } from 'ng2-tree';
|
|
|
|
import { routing } from './components.routing';
|
|
import { Components } from './components.component';
|
|
import { TreeView } from './components/treeView/treeView.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
NgaModule,
|
|
TreeModule,
|
|
routing
|
|
],
|
|
declarations: [
|
|
Components,
|
|
TreeView,
|
|
]
|
|
})
|
|
export class ComponentsModule {}
|