import sanitize from 'sanitize-html'; export function TemplateNote({ note }: { note: string | undefined }) { if (!note) { return null; } return (
Information
); }