123456789101112131415161718192021 |
- import { NgModule } from '@angular/core';
- import { SharedModule } from '@shared';
- import { ReportFormRoutingModule } from './report-form-routing.module';
- import { ReportFormProjectStatisticsComponent } from './project-statistics/project-statistics.component';
- const COMPONENTS = [
- ReportFormProjectStatisticsComponent];
- const COMPONENTS_NOROUNT = [];
- @NgModule({
- imports: [
- SharedModule,
- ReportFormRoutingModule
- ],
- declarations: [
- ...COMPONENTS,
- ...COMPONENTS_NOROUNT
- ],
- entryComponents: COMPONENTS_NOROUNT
- })
- export class ReportFormModule { }
|