<Slider />
The Slider component is the main component that wraps all the other components. It also allows customizing the slider with specific props.
const MySlider = () => (
<Slider
slides={slides}
withAutomaticScroll={true}
automaticScrollDuration={2000}
>
<SliderImage />
</Slider>
);
Get the code
Please, log in or sign up to see the code.