mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
34 lines
951 B
TypeScript
34 lines
951 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, NgControl } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { NewEventPageRoutingModule } from './new-event-routing.module';
|
|
|
|
import { NewEventPage } from './new-event.page';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import {MatDatepickerModule} from '@angular/material/datepicker';
|
|
import {MatInputModule} from '@angular/material/input';
|
|
|
|
import { MatNativeDateModule } from '@angular/material/core';
|
|
import { MatMomentDateModule, MomentDateAdapter } from "@angular/material-moment-adapter";
|
|
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
NewEventPageRoutingModule,
|
|
NgbModule,
|
|
MatDatepickerModule,
|
|
MatInputModule,
|
|
MatNativeDateModule,
|
|
|
|
],
|
|
declarations: [NewEventPage],
|
|
exports: [NewEventPage]
|
|
})
|
|
export class NewEventPageModule {}
|