import React, {Component, PureComponent} from 'react'; import './Sidebar.css'; export class Sidebar extends PureComponent { constructor(props) { super(props); this.sidebar_ref=React.createRef(); } componentWillReceiveProps(nextProps) { //console.log('sidebar top'); if(this.sidebar_ref.current) this.sidebar_ref.current.scrollTop=0; } render() { return (
{this.props.content}
   {this.props.title}
); } }