- Latest Blocks
- Latest Transactions
+
+
Latest Blocks
+
+
+
+
+
Latest Transactions
+
+
About
diff --git a/app/src/pages/home/home.module.ts b/app/src/pages/home/home.module.ts
index 9a8ed53..b3d3a15 100644
--- a/app/src/pages/home/home.module.ts
+++ b/app/src/pages/home/home.module.ts
@@ -2,6 +2,7 @@ import { NgModule } from '@angular/core';
import { IonicPageModule } from 'ionic-angular';
import { HomePage } from './home';
import { HeadNavComponentModule } from '../../components/head-nav/head-nav.module';
+import { LatestTransactionsComponentModule } from '../../components/latest-transactions/latest-transactions.module';
@NgModule({
declarations: [
@@ -9,7 +10,8 @@ import { HeadNavComponentModule } from '../../components/head-nav/head-nav.modul
],
imports: [
IonicPageModule.forChild(HomePage),
- HeadNavComponentModule
+ HeadNavComponentModule,
+ LatestTransactionsComponentModule
],
exports: [
HomePage
diff --git a/app/src/pages/pages.module.ts b/app/src/pages/pages.module.ts
index b76bdd6..4787ac8 100644
--- a/app/src/pages/pages.module.ts
+++ b/app/src/pages/pages.module.ts
@@ -2,6 +2,8 @@ import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
import { ComponentsModule } from '../components';
import { HeadNavComponentModule } from '../components/head-nav/head-nav.module';
+import { LatestTransactionsComponentModule } from '../components/latest-transactions/latest-transactions.module';
+import { LatestBlocksComponentModule } from '../components/latest-blocks/latest-blocks.module';
import {
HomePage,
BlocksPage,
@@ -18,7 +20,13 @@ import {
NodeStatusPage,
VerifyMessagePage
],
- imports: [ IonicModule, ComponentsModule, HeadNavComponentModule ],
+ imports: [
+ IonicModule,
+ ComponentsModule,
+ HeadNavComponentModule,
+ LatestTransactionsComponentModule,
+ LatestBlocksComponentModule
+ ],
exports: [
// CustomComponent,
],