Newer
Older
import {NgModule} from '@angular/core';
import {IonicPageModule} from 'ionic-angular';
import {FoodPage} from './food';
import {FoodApplyPage} from "./food-apply/food-apply";
import {FoodDealPage} from "./food-deal/food-deal";
import {CalendarModule} from "ion2-calendar";
declarations: [
FoodPage,
FoodApplyPage,
FoodDealPage,
RushBuyPage,
],
imports: [
CalendarModule,
IonicPageModule.forChild(FoodPage),
],
entryComponents: [
FoodApplyPage,
FoodDealPage,
RushBuyPage,
]