import { NostrEvent, NostrPrefix, encodeTLV } from "@snort/system"; import { findTag, unwrap } from "SnortUtils"; import { FormattedMessage } from "react-intl"; import { Link } from "react-router-dom"; export function LiveEvent({ ev }: { ev: NostrEvent }) { const title = findTag(ev, "title"); const d = unwrap(findTag(ev, "d")); return (

{title}

); }