import { useState } from "react"; export default function MessageInput({ onSend }) { const [input, setInput] = useState(""); const handleSend = () => { if (!input.trim()) return; onSend(input); setInput(""); }; return (
setInput(e.target.value)} placeholder="Type your message..." style={{ flex: 1, padding: "10px", fontSize: "16px" }} />
); }