// src/components/TextInput.jsx import { useState } from 'react'; const MAX = 400; const EXAMPLES = [ 'The cat sat on the mat and watched the dog sleep.', 'Attention is all you need to understand transformers.', 'The bank can guarantee deposits will eventually cover future tuition costs.', 'She saw the man with the telescope on the hill.', ]; export default function TextInput({ value, onChange, onSubmit, loading }) { const [showExamples, setShowExamples] = useState(false); return (