Skip to content

Instantly share code, notes, and snippets.

@amitzur
Created February 3, 2018 20:01
Show Gist options
  • Save amitzur/b51a40facdf901a35f2207b1586338b8 to your computer and use it in GitHub Desktop.
Save amitzur/b51a40facdf901a35f2207b1586338b8 to your computer and use it in GitHub Desktop.
Scroll to bottom
import React, { Component } from 'react';
class ScrollToBottom extends Component {
componentDidUpdate() {
this.el.scrollTop = this.el.scrollHeight;
}
render() {
const child = React.Children.only(this.props.children);
return React.cloneElement(child, { ref: (el) => { this.el = el; } });
}
}
export default ScrollToBottom;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment