const messagesEndRef = useRef(null); const [msgs, setMsgs] = useState([]); const scrollToBottom = () => { messagesEndRef.current?.scrollIntoView({ behavior: "smooth" }); }; useEffect(() => { scrollToBottom(); }, [msgs]);