UNPKG

insight-previous-tcr

Version:

A blockchain explorer for Bitcore

13 lines (11 loc) 454 B
import { NgModule } from "@angular/core"; import { IonicModule } from "ionic-angular"; import { CoinComponentModule } from "../coin/coin.module"; import { LoaderComponentModule } from "../loader/loader.module"; import { CoinListComponent } from "./coin-list"; @NgModule({ declarations: [CoinListComponent], imports: [IonicModule, CoinComponentModule, LoaderComponentModule], exports: [CoinListComponent] }) export class CoinListComponentModule {}