This commit is contained in:
Peter Maquiran
2021-06-17 13:58:56 +01:00
parent d18030dbc3
commit 7c7a6f8483
14 changed files with 135 additions and 126 deletions
@@ -1,6 +1,6 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { FormsModule, NgControl } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
@@ -8,13 +8,24 @@ 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, //
NgbModule,
MatDatepickerModule,
MatInputModule,
MatNativeDateModule,
],
declarations: [NewEventPage],
exports: [NewEventPage]