UNPKG

insight-previous-tcr

Version:

A blockchain explorer for Bitcore

25 lines (23 loc) 994 B
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 { LatestBlocksComponentModule } from "../../components/latest-blocks/latest-blocks.module"; import { LatestTransactionsComponentModule } from "../../components/latest-transactions/latest-transactions.module"; import { LoaderComponentModule } from "../../components/loader/loader.module"; import { HomePage } from "./home"; @NgModule({ declarations: [HomePage], imports: [ IonicPageModule.forChild(HomePage), LatestBlocksComponentModule, FooterComponentModule, HeadNavComponentModule, LatestTransactionsComponentModule, LoaderComponentModule, ErrorComponentModule ], exports: [HomePage] }) export class HomePageModule {}