2017-08-29 14:20:13 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { SharedModule } from '../../../core/modules/shared.module';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { FuseNgxDatatableComponent } from './datatable/ngx-datatable.component';
|
2017-10-13 08:57:54 +00:00
|
|
|
import { GoogleMapsModule } from './google-maps/google-maps.module';
|
2017-08-29 14:20:13 +00:00
|
|
|
|
|
|
|
const routes = [
|
|
|
|
{
|
|
|
|
path : 'components-third-party/datatables/ngx-datatable',
|
|
|
|
component: FuseNgxDatatableComponent
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports : [
|
|
|
|
SharedModule,
|
2017-10-13 08:57:54 +00:00
|
|
|
RouterModule.forChild(routes),
|
|
|
|
GoogleMapsModule
|
2017-08-29 14:20:13 +00:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
FuseNgxDatatableComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ComponentsThirdPartyModule
|
|
|
|
{
|
|
|
|
}
|