import React, { useState } from 'react'; const InputArea = ({ onSend }) => { const [inputValue, setInputValue] = useState(''); const handleSend = () => { if (inputValue.trim()) { onSend(inputValue); setInputValue(''); } }; return (
setInputValue(e.target.value)} onKeyPress={(e) => e.key === 'Enter' && handleSend()} placeholder="مثلاً: برند اپکس بالای 5 میلیون" className="flex-1 p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 text-gray-800 font-sans" />
); }; export default InputArea;