import { useRef, useEffect } from 'react'; export default function Preview({ html, consoleOutput, isGenerating }) { const iframeRef = useRef(null); useEffect(() => { if (iframeRef.current && html) { iframeRef.current.srcdoc = html; } }, [html]); return (
{isGenerating ? 'Generating preview...' : 'Live Preview'}
{isGenerating ? 'Your website will appear here' : 'Generated code will render here in real-time'}