From 0664ca81d9e59f18c3cfa60b580b0894698657f3 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sat, 19 Dec 2020 16:17:10 +0000 Subject: [PATCH] added stub of wallet card --- websrc/components/HCard.tsx | 126 ++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) 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