import { useRef } from "react"; const Chat = () => { const ref = useRef(null); return (
chat
); }; export default Chat;