diff --git a/ui/src/components/range-slider/index.js b/ui/src/components/range-slider/index.js index f4ccdeb7..9829b549 100644 --- a/ui/src/components/range-slider/index.js +++ b/ui/src/components/range-slider/index.js @@ -4,6 +4,7 @@ const styles = require('./style.css'); const RangeSlider = ({ className, + onChange, style }) => { @@ -21,6 +22,7 @@ const RangeSlider = ({ return ( @@ -29,6 +31,7 @@ const RangeSlider = ({ RangeSlider.propTypes = { className: React.PropTypes.string, + onChange: React.PropTypes.func, style: React.PropTypes.object };