ghtedNode, setSelectedNode, simulateAnimation, timeScale, } = this.props; const { startIndex, endIndex } = displayableRange; return dom.ul( { className: "animation-list", }, animations.map((animation, index) => AnimationItem({ animation, dispatch, getAnimatedPropertyMap, getNodeFromActor, isDisplayable: startIndex <= index && index <= endIndex, selectAnimation, setHighlightedNode, setSelectedNode, simulateAnimation, timeScale, }) ) ); } } module.exports = AnimationList; PK