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