import type { ReactNode } from "react"; import { WalletScopeHint } from "@/modules/wallet/wallet-scope-hint"; import { WalletSubnav } from "@/modules/wallet/wallet-subnav"; export default function AdminWalletLayout({ children }: { children: ReactNode }) { return (
{children}
); }