UNPKG

react-multi-carousel

Version:

Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering) with typescript.

11 lines (10 loc) 389 B
/// <reference types="react" /> import { CarouselInternalState, CarouselProps } from "./types"; interface CarouselItemsProps { props: CarouselProps; state: CarouselInternalState; clones: any[]; goToSlide: (index: number) => void; } declare const CarouselItems: ({ props, state, goToSlide, clones, }: CarouselItemsProps) => JSX.Element | null; export default CarouselItems;