Files
Trilium/apps/client/src/widgets/react/RawHtml.tsx

7 lines
169 B
TypeScript
Raw Normal View History

2025-08-05 20:35:53 +03:00
interface RawHtmlProps {
html: string;
}
export default function RawHtml({ html }: RawHtmlProps) {
return <span dangerouslySetInnerHTML={{ __html: html }} />;
}