Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 425 Bytes

File metadata and controls

29 lines (22 loc) · 425 Bytes
title HTML
description Render raw HTML content safely

import { ComponentDemo, DemoGrid } from '@/app/components/ComponentDemo';

HTML

Render raw HTML content safely

Examples

<ComponentDemo schema={{ type: "html", html: "

This is HTML content

" }} title="Basic HTML" />

Schema

interface HtmlSchema {
  type: 'html';
  html: string;
}