mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 13:05:08 +00:00
8205a4d5b5
+ some style refinements on doc pages.
27 lines
689 B
TypeScript
27 lines
689 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../../../core/modules/shared.module';
|
|
import { RouterModule } from '@angular/router';
|
|
import { FuseNgxDatatableComponent } from './datatable/ngx-datatable.component';
|
|
import { GoogleMapsModule } from './google-maps/google-maps.module';
|
|
|
|
const routes = [
|
|
{
|
|
path : 'components-third-party/datatables/ngx-datatable',
|
|
component: FuseNgxDatatableComponent
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports : [
|
|
SharedModule,
|
|
RouterModule.forChild(routes),
|
|
GoogleMapsModule
|
|
],
|
|
declarations: [
|
|
FuseNgxDatatableComponent
|
|
]
|
|
})
|
|
export class ComponentsThirdPartyModule
|
|
{
|
|
}
|