import * as React from 'react'; export class ScrollToBottom extends React.Component { ref = React.createRef(); componentDidMount() { this.scrollToBottom(); } scrollToBottom() { this.ref.current.scrollTo({ behavior: 'smooth', top: 999999 }); } render() { return
; } }