19 lines
420 B
TypeScript
19 lines
420 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicPageModule } from 'ionic-angular';
|
|
import { BlocksPage } from './blocks';
|
|
import { HeadNavComponentModule } from '../../components/head-nav/head-nav.module';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
BlocksPage
|
|
],
|
|
imports: [
|
|
IonicPageModule.forChild(BlocksPage),
|
|
HeadNavComponentModule
|
|
],
|
|
exports: [
|
|
BlocksPage
|
|
]
|
|
})
|
|
export class BlocksPageModule {}
|