mirror of
https://github.com/logos-messaging/logos-delivery-frontend.git
synced 2026-05-19 20:09:25 +00:00
17 lines
524 B
TypeScript
17 lines
524 B
TypeScript
"use client";
|
|
import { Header } from "@/app/components/Header";
|
|
import { Keystore } from "@/app/components/Keystore";
|
|
import { KeystoreDetails } from "@/app/components/KeystoreDetails";
|
|
import { useWallet } from "@/hooks";
|
|
|
|
export default function KeystorePage() {
|
|
const { onWalletConnect } = useWallet();
|
|
return (
|
|
<main className="flex min-h-screen flex-col p-24 font-mono max-w-screen-lg m-auto">
|
|
<Header onWalletConnect={onWalletConnect} />
|
|
<Keystore />
|
|
<KeystoreDetails />
|
|
</main>
|
|
);
|
|
}
|