import { type ReactNode } from "react"; import ReactMarkdown from "react-markdown"; import remarkGfm from "remark-gfm"; type ActivityLogContactNoteCreatedProps = { header: ReactNode; text: string; }; export function ActivityLogNote({ header, text, }: ActivityLogContactNoteCreatedProps) { if (!text) { return null; } return (
{header}
{text}
); }