react-multi-carousel
Version:
Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering) with typescript.
9 lines (8 loc) • 314 B
TypeScript
import { CarouselInternalState, CarouselProps } from "./types";
interface CarouselItemsProps {
props: CarouselProps;
state: CarouselInternalState;
goToSlide: (index: number) => void;
}
declare const CarouselItems: ({ props, state, goToSlide }: CarouselItemsProps) => any;
export default CarouselItems;