Skip to content

Instantly share code, notes, and snippets.

@amiyasahu
Created July 6, 2018 02:40
Show Gist options
  • Save amiyasahu/d839aed86d1d0e793aa3926c2d43c3f0 to your computer and use it in GitHub Desktop.
Save amiyasahu/d839aed86d1d0e793aa3926c2d43c3f0 to your computer and use it in GitHub Desktop.
Scroll into view after the component is loaded in react
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
class ScrollToComponent extends Component {
componentDidMount() {
ReactDOM.findDOMNode(this).scrollIntoView();
}
render() {
return (
<div className="ScrollToComponent" />
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment