gorhawk

Results 2 comments of gorhawk

If I understand this ticket correctly, this is something that I also wondered. I'm using this library with react-player, which is a player that is constantly updating its progress. So...

Example for posterity: ``` import * as React from 'react'; import { Range } from 'react-range'; class SuperSimple extends React.Component { state = { values: [50], isDragging: false }; render()...