15 lines
590 B
TypeScript
15 lines
590 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { SharedModule, SHARED_G2_MODULES } from '@shared';
|
|
|
|
import { DashboardComponent } from './components/dashboard/dashboard.component';
|
|
import { RegulatoryDataRoutingModule } from './regulatory-data-routing.module';
|
|
|
|
const COMPONENTS: any = [DashboardComponent];
|
|
const NOTROUTECOMPONENTS: any = [];
|
|
@NgModule({
|
|
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],
|
|
imports: [CommonModule, RegulatoryDataRoutingModule, SharedModule, SHARED_G2_MODULES]
|
|
})
|
|
export class RegulatoryDataModule {}
|