UNPKG

insight-previous-tcr

Version:

A blockchain explorer for Bitcore

17 lines (15 loc) 541 B
import { NgModule } from "@angular/core"; import { IonicPageModule } from "ionic-angular"; import { FooterComponentModule } from "../../components/footer/footer.module"; import { HeadNavComponentModule } from "../../components/head-nav/head-nav.module"; import { BroadcastTxPage } from "./broadcast-tx"; @NgModule({ declarations: [BroadcastTxPage], imports: [ IonicPageModule.forChild(BroadcastTxPage), FooterComponentModule, HeadNavComponentModule ], exports: [BroadcastTxPage] }) export class BroadcastTxPageModule {}