UNPKG

fcash-insight

Version:
21 lines (19 loc) 558 B
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { OutpointPage } from './outpoint'; import { TransactionComponentModule } from '../../components/transaction/transaction.module'; import { HeadNavComponentModule } from '../../components/head-nav/head-nav.module'; @NgModule({ declarations: [ OutpointPage ], imports: [ IonicPageModule.forChild(OutpointPage), TransactionComponentModule, HeadNavComponentModule ], exports: [ OutpointPage ] }) export class OutpointPageModule {}