Newer
Older
import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { BlockListPage } from './block-list';
@NgModule({
declarations: [
BlockListPage,
],
imports: [
IonicPageModule.forChild(BlockListPage),
],
})
export class BlockListPageModule {}