react-carousel-mui

A dynamic and customisable carousel component built using React and MUI

Usage no npm install needed!

<script type="module">
  import reactCarouselMui from 'https://cdn.skypack.dev/react-carousel-mui';
</script>

README

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

react-carousel-mui

A dynamic and customizable carousel component built using React and MUI
Report a Bug


Getting Started

npm install react-carousel-mui

or

yarn add react-carousel-mui

Usage

<Carousel
  items={itemList}
  itemsPerPage={{
    xs: 2,
    sm: 2,
    tablet: 2,
    md: 3,
    lg: 3,
    xl: 3,
  }}
  itemRenderer={(item: string) => <CustomCard data={item} />}
/>

Please checkout the following codesandbox for a live and more rich example: react-carousel-mui-demo

License

Distributed under the MIT License. See LICENSE.txt for more information.

Contact

@heIsThePirate

Project Link: https://github.com/heIsThePirate/react-carousel-mui

(back to top)