feat: new wallet design

This commit is contained in:
2024-01-02 18:11:44 +00:00
parent 0d10122394
commit bc7ec4d77f
16 changed files with 252 additions and 130 deletions

View File

@ -64,6 +64,7 @@ import { setupWebLNWalletConfig } from "@/Wallet/WebLN";
import { Wallets } from "@/Wallet";
import Fuse from "fuse.js";
import NetworkGraph from "@/Pages/NetworkGraph";
import WalletPage from "./Pages/WalletPage";
declare global {
interface Window {
@ -279,6 +280,14 @@ const mainRoutes = [
path: "/graph",
element: <NetworkGraph />,
},
{
path: "/wallet",
element: (
<div className="p">
<WalletPage showHistory={true} />
</div>
),
},
...OnboardingRoutes,
...SettingsRoutes,
] as Array<RouteObject>;