27 lines
522 B
TypeScript
27 lines
522 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { IonicModule } from 'ionic-angular';
|
|
import { ComponentsModule } from '../components';
|
|
import {
|
|
BlocksPage,
|
|
BroadcastTxPage,
|
|
NodeStatusPage,
|
|
VerifyMessagePage
|
|
} from './index';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
BlocksPage,
|
|
BroadcastTxPage,
|
|
NodeStatusPage,
|
|
VerifyMessagePage
|
|
],
|
|
imports: [ IonicModule, ComponentsModule ],
|
|
exports: [
|
|
// CustomComponent,
|
|
],
|
|
entryComponents: [],
|
|
providers: []
|
|
})
|
|
|
|
export class PagesModule {}
|