| title | HTML |
|---|---|
| description | Render raw HTML content safely |
import { ComponentDemo, DemoGrid } from '@/app/components/ComponentDemo';
Render raw HTML content safely
<ComponentDemo schema={{ type: "html", html: "
This is HTML content
" }} title="Basic HTML" />interface HtmlSchema {
type: 'html';
html: string;
}