2020-08-05 15:39:16 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { HomePageRoutingModule } from './home-routing.module';
|
|
|
|
|
|
|
|
|
|
import { HomePage } from './home.page';
|
2020-08-27 10:46:09 +01:00
|
|
|
/* import { IonicSelectableModule } from 'ionic-selectable'; */
|
2020-12-30 11:43:48 +01:00
|
|
|
import { SharedModule } from 'src/app/shared/shared.module';
|
2021-06-02 10:26:32 +01:00
|
|
|
import { ComponentsModule } from '../components/components.module';
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2020-08-26 09:42:16 +01:00
|
|
|
HomePageRoutingModule,
|
2021-06-02 10:26:32 +01:00
|
|
|
ComponentsModule
|
2020-08-05 15:39:16 +01:00
|
|
|
],
|
|
|
|
|
declarations: [HomePage]
|
|
|
|
|
})
|
|
|
|
|
export class HomePageModule {}
|