interface HTMLWrapperProps { html: string; className?: string; } export function HTML({ html, className }: HTMLWrapperProps) { return (
); }