import React from "react"; import PlayButtonContainer from "../../../containers/app/timeline/PlayButtonContainer"; import { convertTickToPercentage } from "../../../util/timeline"; class TimelineControlsComponent extends React.Component { onTimelineClick(e) { const percentage = e.nativeEvent.offsetX / this.timeline.clientWidth; const tick = Math.floor(percentage * (this.props.lastSimulatedTick + 1)); this.props.goToTick(tick); } render() { return (