is-mychatbot
Version:
Chatbot Widget 2.0
11 lines (9 loc) • 316 B
JSX
import { useEffect, useRef } from "react";
export const useScrollBottom = (messageStack) => {
const bottomRef = useRef(null);
useEffect(() => {
// 👇️ scroll to bottom every time messages change
bottomRef.current?.scrollIntoView({ behavior: "smooth" });
}, [messageStack]);
return bottomRef;
};