"use client"; import { useState } from "react"; export default function Composer({ onSend }) { const [text, setText] = useState(""); return (