I want to build a chat system and automatically scroll to the bottom when entering the window and when new messages come in. How do you automatically scroll to the bottom of
I like doing it the following way.
componentDidUpdate(prevProps, prevState){ this.scrollToBottom(); } scrollToBottom() { const {thing} = this.refs; thing.scrollTop = thing.scrollHeight - thing.clientHeight; } render(){ return( ) }