UNPKG

insight-previous-tcr

Version:

A blockchain explorer for Bitcore

25 lines (23 loc) 1 kB
import { NgModule } from "@angular/core"; import { IonicPageModule } from "ionic-angular"; import { ErrorComponentModule } from "../../components/error/error.module"; import { FooterComponentModule } from "../../components/footer/footer.module"; import { HeadNavComponentModule } from "../../components/head-nav/head-nav.module"; import { LoaderComponentModule } from "../../components/loader/loader.module"; import { TransactionComponentModule } from "../../components/transaction/transaction.module"; import { CopyToClipboardModule } from "../../directives/copy-to-clipboard/copy-to-clipboard.module"; import { TransactionPage } from "./transaction"; @NgModule({ declarations: [TransactionPage], imports: [ IonicPageModule.forChild(TransactionPage), TransactionComponentModule, FooterComponentModule, HeadNavComponentModule, LoaderComponentModule, ErrorComponentModule, CopyToClipboardModule ], exports: [TransactionPage] }) export class TransactionPageModule {}