2025-11-17 17:19:18 +07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
// import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
|
|
|
|
|
|
import { MainControlRoutingModule } from './main-control-routing.module';
|
|
|
|
|
|
|
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
|
|
|
|
2025-11-17 17:25:51 +07:00
|
|
|
// import { MainDashboardComponent } from '../../component/main-dashboard/main-dashboard.component';
|
2025-11-17 17:19:18 +07:00
|
|
|
import { MainDashboardContentComponent } from '../../content/main-dashboard-content/main-dashboard-content.component';
|
|
|
|
|
import { AccDateFormatPipe } from '../../pipe/dtmtodatetime.pipe';
|
|
|
|
|
import { MainReportComponent } from '../../component/main-report/main-report.component';
|
|
|
|
|
|
|
|
|
|
// import { MainReportComponent } from '../../component/main-report/main-report.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
2025-11-17 17:25:51 +07:00
|
|
|
// MainDashboardComponent,
|
2025-11-17 17:19:18 +07:00
|
|
|
MainDashboardContentComponent,
|
|
|
|
|
MainReportComponent,
|
|
|
|
|
AccDateFormatPipe
|
|
|
|
|
// MainReportComponent
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
MainControlRoutingModule,
|
|
|
|
|
ReactiveFormsModule
|
|
|
|
|
// BrowserAnimationsModule
|
|
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
AccDateFormatPipe
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class MainControlModule { }
|