mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EditEventPageRoutingModule } from './edit-event-routing.module';
|
|
|
|
import { EditEventPage } from './edit-event.page';
|
|
import { AttendeeModalPageModule } from 'src/app/shared/event/attendee-modal/attendee-modal.module';
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
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';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
EditEventPageRoutingModule,
|
|
MatDatepickerModule,
|
|
MatInputModule,
|
|
MatNativeDateModule,
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatTimepickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatMomentModule,
|
|
MatSelectModule,
|
|
MatButtonModule,
|
|
ReactiveFormsModule,
|
|
//
|
|
AttendeeModalPageModule
|
|
],
|
|
declarations: [
|
|
EditEventPage
|
|
]
|
|
})
|
|
export class EditEventPageModule {}
|