rc-carousel-3d
v2.0.0
Published
rc carousel 3d
Downloads
1
Readme
React 3D Carousel using rc-carousel-3d
A 3D carousel component for React using the rc-carousel-3d
library.
Installation
You can install this package using npm or yarn:
npm install rc-carousel-3d
# or
yarn add rc-carousel-3d
Usage
Here's how to use rc-progressive-image in your React application:
Import the Carousel3d component and use it in your React application as follows:
import data from "./data";
function App() {
const config = {
showNavigation: true,
enableSwipe: true,
offsetRadius: 8,
};
return (
<div>
<Carousel3d
data={data}
config={config}
/>
</div>
);
};
export default App;