import React, { useState } from 'react'; const InputArea = ({ onSend }) => { const [inputValue, setInputValue] = useState(''); const handleSend = () => { if (inputValue.trim()) { onSend(inputValue); setInputValue(''); } }; return (