1.0.7 • Published 10 months ago
carsousel-reactjs-package v1.0.7
React Carousel Component
A simple and responsive carousel component for React applications, supporting auto-scrolling and manual scrolling with visual indicators.
Features
- Easy to use
- Auto-scroll functionality
- Manual scrolling with indicators
- Responsive design
Installation
You can install the carousel component via npm:
npm install carsousel-reactjs-package
Usage/Examples
import Carsousel from 'carsousel-reactjs-package'
const imagesData=[
{
images:"url",
...others
}
]
function App() {
return
<Carousel images={imagesData}
handleCarouselClick={(c) => console.log(c)}
enableAutoScroll={true} // when is true AutoScroll Enable
/>
}