import { forwardRef } from 'react'; type Props = { scrollHandler: React.MouseEventHandler; }; const ScrollToBottom = forwardRef(({ scrollHandler }, ref) => { return ( ); }); ScrollToBottom.displayName = 'ScrollToBottom'; export default ScrollToBottom;