mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-16 21:35:13 +00:00
39 lines
976 B
TypeScript
39 lines
976 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { MatButtonModule, MatCheckboxModule, MatIconModule } from '@angular/material';
|
|
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
|
|
|
import { FuseSharedModule } from '@fuse/shared.module';
|
|
|
|
import { GoogleMapsModule } from 'app/main/components-third-party/google-maps/google-maps.module';
|
|
import { NgxDatatableDocsComponent } from 'app/main/components-third-party/datatable/ngx-datatable.component';
|
|
|
|
const routes = [
|
|
{
|
|
path : 'datatables/ngx-datatable',
|
|
component: NgxDatatableDocsComponent
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
NgxDatatableDocsComponent
|
|
],
|
|
imports : [
|
|
RouterModule.forChild(routes),
|
|
|
|
MatButtonModule,
|
|
MatCheckboxModule,
|
|
MatIconModule,
|
|
|
|
NgxDatatableModule,
|
|
|
|
FuseSharedModule,
|
|
|
|
GoogleMapsModule
|
|
]
|
|
})
|
|
export class ComponentsThirdPartyModule
|
|
{
|
|
}
|