Example of a slider in a form
0
100
GB
0
100
componentDidMount() {
this.slider = new Slider("input.slider", {
value: 0,
min: 0,
max: 100
});
console.log(this.slider);
}
componentDidUpdate() {
console.log('slider updated');
console.log(this.slider);
// this.slider.setAttribute('max', this.props.length);
// this.slider.setValue(this.props.mark);
}