wallet page implementation

This commit was merged in pull request #5.
This commit is contained in:
victorAnumudu
2023-04-21 17:28:40 +01:00
parent ae83c7e533
commit 85676cdb58
7 changed files with 385 additions and 5 deletions
+3 -2
View File
@@ -1,10 +1,11 @@
import React from "react";
import MyWallet from "../components/MyWallet";
// import MyWallet from "../components/MyWallet";
import WalletRoutes from "../components/MyWallet/Wallet";
export default function MyWalletPage() {
return (
<>
<MyWallet />
<WalletRoutes />
</>
);
}