react-product-slider
Version:
product slider for e-commerce websites
55 lines (42 loc) • 1.54 kB
Markdown
[](https://alrramezani.github.io/react-product-slider/)
The easiest way to use react-product-slider is to install it from npm.
```
npm install react-product-slider
```
```jsx
import ReactProductSlider from "react-product-slider";
const items = [
{
src: "mockImages/slide.jpg",
alt: "slide",
thumbnail: "mockImages/thumbnail.jpg",
},
];
function App() {
return (
<div>
<div className="slider">
<ReactProductSlider items={items} />
</div>
<div className="content">
<h4>React Product Slider</h4>
</div>
</div>
);
}
export default App;
```
| Property | Required | Default | Example |
| ----------------- | -------- | ------- | ------------------------------------------------------------- |
| `items` | **yes** | -- | `[{src: "slide.jpg",alt: "slide",thumbnail:"thumbnail.jpg"}]` |
| `classNamePrefix` | _no_ | -- | `my-rps` |
| `reverse` | _no_ | false | true |
| `initialSelected` | _no_ | 0 | 3 |
---
[](./LICENSE).