export default function TextInputPanel({ value, onChange }) { const wordCount = value.trim() ? value.trim().split(/\s+/).length : 0; return (