EL-Mehdi Loukach
EL-Mehdi Loukach

Reputation: 772

How to use rsuite - React Suite range slider?

Good evening, I'm using the UI framework rsuite (React suite) for the first time, the setup was just fine, but when i wanted to use the API of the component Slider - Range slider, the labels and the tooltips are not working.

Here is some code :

import { RangeSlider } from 'rsuite';
export default ()=> {

return (
    <RangeSlider defaultValue={[10, 50]} max={100} min={0} />
)

}

The page loads with no errors, but i still can't find a way to use the API renderMark. is there any easy way to do this ?

Thanks in advance !

Upvotes: 0

Views: 1160

Answers (1)

Simon Guo
Simon Guo

Reputation: 93

I could not reproduce the problem you described on codesandbox. https://codesandbox.io/s/rsuite-rangeslider-e24ft

Upvotes: 0

Related Questions