fuse-angular/src/app/main/content/components-third-party/components-third-party.module.ts
mustafahlvc 8205a4d5b5 <agm-map> Google Maps component library added,
+ some style refinements on doc pages.
2017-10-13 11:57:54 +03:00

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
{
}