mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 13:05:08 +00:00
25 lines
557 B
TypeScript
25 lines
557 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { SharedModule } from '../../core/modules/shared.module';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
import { NgxDatatableComponent } from './datatable/ngx-datatable.component';
|
||
|
|
||
|
const routes = [
|
||
|
{
|
||
|
path : 'components/datatables/ngx-datatable',
|
||
|
component: NgxDatatableComponent
|
||
|
}
|
||
|
];
|
||
|
|
||
|
@NgModule({
|
||
|
imports : [
|
||
|
SharedModule,
|
||
|
RouterModule.forChild(routes)
|
||
|
],
|
||
|
declarations: [
|
||
|
NgxDatatableComponent
|
||
|
]
|
||
|
})
|
||
|
export class ComponentsModule
|
||
|
{
|
||
|
}
|