import { Kind1 } from "@shared/notes/contents/kind1"; import { NoteMetadata } from "@shared/notes/metadata"; import { User } from "@shared/user"; import { parser } from "@utils/parser"; export function Reply({ data }: { data: any }) { const content = parser(data); return (
); }