2025-11-19 11:08:30 +07:00
|
|
|
import { MainManagerContentComponent } from './../../content/main-manager-content/main-manager-content.component';
|
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:45:33 +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';
|
2025-11-19 11:08:30 +07:00
|
|
|
import { MainManagerComponent } from '../../component/main-manager/main-manager.component';
|
|
|
|
|
import { BudgetAproval } from '../../component/budget-aproval/budget-aproval';
|
|
|
|
|
import { MainLandingComponent } from '../../component/main-landing/main-landing.component';
|
2025-11-17 17:19:18 +07:00
|
|
|
|
|
|
|
|
// import { MainReportComponent } from '../../component/main-report/main-report.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
2025-11-17 17:45:33 +07:00
|
|
|
MainDashboardComponent,
|
2025-11-17 17:19:18 +07:00
|
|
|
MainDashboardContentComponent,
|
|
|
|
|
MainReportComponent,
|
2025-11-19 11:08:30 +07:00
|
|
|
MainManagerContentComponent,
|
|
|
|
|
MainManagerComponent,
|
|
|
|
|
BudgetAproval,
|
|
|
|
|
MainLandingComponent,
|
2025-11-17 17:19:18 +07:00
|
|
|
AccDateFormatPipe
|
|
|
|
|
// MainReportComponent
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
MainControlRoutingModule,
|
|
|
|
|
ReactiveFormsModule
|
|
|
|
|
// BrowserAnimationsModule
|
|
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
AccDateFormatPipe
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class MainControlModule { }
|