A responsive React carousel
npm install @igor-j86/react-carouselCSS note:
The package comes with a CSS file, but you can choose to whether import it manually from the package or use your own.
jsx
import React from "react";
import { Link } from "react-router-dom";
import { Carousel } from "@igor-j86/react-carousel";
import "../../node_modules/@igor-j86/react-carousel/lib/style/ijrc-carousel.css";const SomeComponent = () => {
return (
Card 1
Card 2
Card 3
Card 4
Card 5
)
}
export default SomeComponent
``