'use client'; import { NostrProvider } from "nostr-react"; import { ReactNode } from "react"; const relayUrls = [ "wss://relay.nostr.band" ]; export default function NostrClientWrapper({ children }: { children: ReactNode }) { return ( {children} ); }