mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { DiplomasPageRoutingModule } from './diplomas-routing.module';
|
|
|
|
import { DiplomasPage } from './diplomas.page';
|
|
|
|
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { MatNativeDateModule } from '@angular/material/core';
|
|
|
|
import {
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatTimepickerModule
|
|
} from '@angular-material-components/datetime-picker';
|
|
|
|
import { ReactiveFormsModule } from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
|
import { TaskListPageModule } from 'src/app/shared/gabinete-digital/generic/task-list/task-list.module'
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
DiplomasPageRoutingModule,
|
|
TaskListPageModule,
|
|
//
|
|
MatInputModule,
|
|
MatNativeDateModule,
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatTimepickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatMomentModule,
|
|
MatSelectModule,
|
|
MatButtonModule,
|
|
],
|
|
exports: [DiplomasPage],
|
|
declarations: [DiplomasPage]
|
|
})
|
|
export class DiplomasPageModule {}
|