Files
doneit-web/src/app/home/home.module.ts
T

23 lines
604 B
TypeScript
Raw Normal View History

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';
2022-02-18 15:28:30 +01:00
import { LazyLoadImageModule } from 'ng-lazyload-image';
2020-08-05 15:39:16 +01:00
import { HomePage } from './home.page';
2020-08-27 10:46:09 +01:00
/* import { IonicSelectableModule } from 'ionic-selectable'; */
2020-08-05 15:39:16 +01:00
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
2020-08-26 09:42:16 +01:00
HomePageRoutingModule,
2022-02-18 15:28:30 +01:00
LazyLoadImageModule
2020-08-05 15:39:16 +01:00
],
2021-07-06 13:21:51 +01:00
declarations: [HomePage],
2020-08-05 15:39:16 +01:00
})
export class HomePageModule {}