feat: zap-pool

This commit is contained in:
2023-05-16 22:30:52 +01:00
parent 9b3b3adef9
commit 7317bc4c35
9 changed files with 357 additions and 23 deletions

View File

@ -30,7 +30,7 @@ import { WalletRoutes } from "Pages/WalletPage";
import NostrLinkHandler from "Pages/NostrLinkHandler";
import Thread from "Element/Thread";
import { SubscribeRoutes } from "Pages/subscribe";
import Discover from "Pages/Discover";
import ZapPoolPage from "Pages/ZapPool";
/**
* HTTP query provider
@ -94,6 +94,10 @@ export const router = createBrowserRouter([
path: "/search/:keyword?",
element: <SearchPage />,
},
{
path: "/zap-pool",
element: <ZapPoolPage />,
},
...NewUserRoutes,
...WalletRoutes,
...SubscribeRoutes,