Create basic layout for mining dashboard page - Show miner in blocks

This commit is contained in:
nymkappa
2022-02-16 17:32:12 +09:00
parent 0c8d8aa85a
commit ead9fb98f4
12 changed files with 161 additions and 26 deletions

View File

@@ -27,6 +27,7 @@ import { AssetGroupComponent } from './components/assets/asset-group/asset-group
import { AssetsFeaturedComponent } from './components/assets/assets-featured/assets-featured.component';
import { AssetsComponent } from './components/assets/assets.component';
import { PoolComponent } from './components/pool/pool.component';
import { MiningDashboardComponent } from './components/mining-dashboard/mining-dashboard.component';
import { DifficultyChartComponent } from './components/difficulty-chart/difficulty-chart.component';
let routes: Routes = [
@@ -72,6 +73,10 @@ let routes: Routes = [
path: 'mining/pools',
component: PoolRankingComponent,
},
{
path: 'mining/dashboard',
component: MiningDashboardComponent,
},
{
path: 'mining/pool/:poolId',
component: PoolComponent,
@@ -168,6 +173,10 @@ let routes: Routes = [
path: 'mining/pools',
component: PoolRankingComponent,
},
{
path: 'mining/dashboard',
component: MiningDashboardComponent,
},
{
path: 'mining/pool/:poolId',
component: PoolComponent,
@@ -258,6 +267,10 @@ let routes: Routes = [
path: 'mining/pools',
component: PoolRankingComponent,
},
{
path: 'mining/dashboard',
component: MiningDashboardComponent,
},
{
path: 'mining/pool/:poolId',
component: PoolComponent,