Added /mining/pool/:poolId empty page

This commit is contained in:
nymkappa
2022-02-08 18:56:51 +09:00
parent b854c071d0
commit fbda0d8186
6 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<div class="container-xl">
Pool
</div>

View File

@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-pool',
templateUrl: './pool.component.html',
styleUrls: ['./pool.component.scss']
})
export class PoolComponent implements OnInit {
constructor(
) { }
ngOnInit(): void {
}
}