feat(react/dialogs): port cheatsheet

This commit is contained in:
Elian Doran
2025-08-05 20:35:53 +03:00
parent bde4545afc
commit 7202f47716
12 changed files with 230 additions and 217 deletions

View File

@@ -0,0 +1,7 @@
interface RawHtmlProps {
html: string;
}
export default function RawHtml({ html }: RawHtmlProps) {
return <span dangerouslySetInnerHTML={{ __html: html }} />;
}