import { Check, ClipboardList } from 'lucide-react'; import { Message } from '../ChatWindow'; import { useState } from 'react'; import { Section } from '@/lib/hooks/useChat'; const Copy = ({ section, initialMessage, }: { section: Section; initialMessage: string; }) => { const [copied, setCopied] = useState(false); return ( ); }; export default Copy;