diff --git a/websrc/components/HCard.tsx b/websrc/components/HCard.tsx index d947181..444f3c5 100644 --- a/websrc/components/HCard.tsx +++ b/websrc/components/HCard.tsx @@ -20,4 +20,130 @@ export class SidebarCard extends Component { ) } +} + +export class WalletCard extends Component{ + constructor(props) { + super(props); + } + render(){ + return( +
+
+
+
+

Your Wallets

+
+ + +
+
+
+ +
+
+
+ + + + + +
+ Bitcoin +
+
+
+ 100% +
+
+
+
+ 0.0010 BTC +
+
+
+
+ CA$21.28 +
+
+
+
+
+
+
+ + + + + +
+ Litecoin +
+
+
+ 0% +
+
+
+
+ 0.0000 LTC +
+
+
+
+ CA$0.00 +
+
+
+
+
+
+
+ + + + + +
+ Ethereum +
+
+
+ 0% +
+
+
+
+ 0.0000 ETH +
+
+
+
+ CA$0.00 +
+
+
+
+
+
+ Total Balance ≈ CA$21.28 +
+
+
+
+ ) + } } \ No newline at end of file