<NavigationControls />
Navigation controls component. It displays a dot for each slide to allow navigation. In slides with automatic scroll, the active dot gets filled as the time progresses.
const MySlider = () => (
<Slider
withAutomaticScroll={true}
automaticScrollDuration={2000}
slides={slides}
>
<NavigationControls />
<SliderImage />
</Slider>
);
Get the code
Please, log in or sign up to see the code.