import ShadowContainer from '@/components/Common/ShadowContainer'; interface WysiwygPreviewProps { html: string; isDark?: boolean; className?: string; } const WysiwygPreview = ({ html, isDark = false, className = '' }: WysiwygPreviewProps ) => ( ); export default WysiwygPreview;