'use client' import React from 'react' import { useDesignStore } from '@/stores/design-store' import { FileText } from 'lucide-react' import DocumentEditor from '@/components/ui/document-editor' const SimpleDocumentPanel: React.FC = () => { const { currentDesign } = useDesignStore() return (
{/* Header */} {/*

Document

{currentDesign && (

Notes for {currentDesign.name}

)}
*/} {/* Document Editor */}
) } export default SimpleDocumentPanel