import { initNDK } from "@libs/ndk"; import NDK from "@nostr-dev-kit/ndk"; import { createContext } from "react"; export const RelayContext = createContext(null); const ndk = await initNDK(); export function RelayProvider({ children }: { children: React.ReactNode }) { return {children}; }