- Make it infinite scroll
- Create tests for project
- Improve example lighthouse overall score:
- Add basic arrows when config:
<ReactCarousel
navigation={{
arrows: true,
}}
>...</ReactCarousel>
- Permit custom dots:
<ReactCarousel
navigation={{
dots: {(index) => {
<div>Go to {index + 1}</div>
}}
}}
>...</ReactCarousel>
- Permit custom arrows:
<ReactCarousel
navigation={{
arrows: {
left: {<div>Previous</div>},
right: {<div>Next</div>},
}
}}
>...</ReactCarousel>
- Handle keyboard navigation (accessibility purpose)