This commit is contained in:
Lingzi
2022-03-28 10:02:34 +08:00
parent c1fb620227
commit 5693c85f30
11 changed files with 133 additions and 7 deletions

View File

@ -0,0 +1,17 @@
import { NgModule, Type } from '@angular/core';
import { SharedModule, SHARED_G2_MODULES } from '@shared';
import { DatatableRoutingModule } from './datatable-routing.module';
import { DatatableDataindexComponent } from './dataindex/dataindex.component';
const COMPONENTS: Type<void>[] = [
DatatableDataindexComponent];
@NgModule({
imports: [
SharedModule,
DatatableRoutingModule,
SHARED_G2_MODULES
],
declarations: COMPONENTS,
})
export class DatatableModule { }