import type { NostrMetadata, NostrPost } from "@/types/nostrill"; import Post from "../Post"; import useLocalState from "@/state/state"; export default NostrPost; function NostrPost({ data }: { data: NostrPost }) { const { profiles } = useLocalState((s) => ({ profiles: s.profiles })); const profile = profiles.get(data.event.pubkey); return ; } export function NostrSnippet({ eventId, pubkey, relay }: NostrMetadata) { return
wtf
; }