Skip to content
Chat.tsx 249 B
Newer Older
Grant's avatar
Grant committed
import { useRef } from "react";
Grant's avatar
Grant committed

const Chat = () => {
  const ref = useRef<HTMLDivElement | null>(null);

  return (
    <div ref={ref} style={{ position: "fixed", top: 0, left: 0, zIndex: 999 }}>
      chat
    </div>
  );
};

export default Chat;