mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
feat(components): add a tree view page
This commit is contained in:
parent
cf23f972d1
commit
a3dede33cf
13 changed files with 109 additions and 8 deletions
18
src/app/pages/components/components.module.ts
Normal file
18
src/app/pages/components/components.module.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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 { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue