2021-03-18 16:30:03 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { EmptyContainerPageRoutingModule } from './empty-container-routing.module';
|
|
|
|
|
|
|
|
|
|
import { EmptyContainerPage } from './empty-container.page';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
EmptyContainerPageRoutingModule
|
|
|
|
|
],
|
2021-06-03 12:08:49 +01:00
|
|
|
exports: [EmptyContainerPage],
|
|
|
|
|
declarations: [EmptyContainerPage]
|
2021-03-18 16:30:03 +01:00
|
|
|
})
|
|
|
|
|
export class EmptyContainerPageModule {}
|