1.0.7 • Published 3 years ago

the-best-react-carousel v1.0.7

Weekly downloads
167
License
ISC
Repository
github
Last release
3 years ago

React Carousel

Instalation

npm i --save the-best-react-carousel

import { Carousel } from "the-best-react-carousel";

let data = [
    { id:1 },
    { id:2 },
    { id:3 },
    { id:4 },
    { id:5 },
    { id:6 },
    { id:7 },
]

let Card = ({ data }) => {
    return(
        <div>{data.id}</div>
    )
}

let App = () => {
    return (
        <Carousel 
            items={[...data]}
            Card={Card} 
            itemsPerView={4}
            gap={16} // px
            description={'Name of my carousel'}
            keySelector={(e) => e.id}
            empty={'There are no items in this carousel'}
        />
    )
}