Carousel in React
Carousel = array of slides + index state. Next: setI(i => (i + 1) % n). Prev similar. Optional autoplay is useEffect + interval + cleanup. Accessibility: buttons labelled, pause on focus. Libraries exist; a 10-line version proves you understand state.
Carousel in React — start A. Next → B. Modulo wraps to A after C.
Exam tip
Index state + modulo next.