Skip to content

Instantly share code, notes, and snippets.

@beb4
beb4 / Scroller.js
Created August 11, 2017 05:13
react-virtualized Feed Scroller with varying heights
class Scroller extends React.Component {
_cache = new CellMeasurerCache({ defaultHeight: 100, fixedWidth: true });
_mostRecentWidth = 0;
constructor(props) {
super(props);
this.state = {
localCache: []
}
}
componentDidMount(){