You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Hasan Genc 8b00ef670a update readme.md 5 years ago
.circleci init 5 years ago
__tests__ init 5 years ago
src init 5 years ago
website init 5 years ago
.dockerignore init 5 years ago
.editorconfig init 5 years ago
.gitignore init 5 years ago
.npmignore init 5 years ago
.nvmrc init 5 years ago
.prettierrc.json init 5 years ago
CHANGELOG.md init 5 years ago
Dockerfile init 5 years ago
LICENSE init 5 years ago
README.md update readme.md 5 years ago
docker-compose.yml init 5 years ago
jest.config.js init 5 years ago
package-lock.json init 5 years ago
package.json update readme.md 5 years ago
rollup.config.js init 5 years ago
tsconfig.json init 5 years ago
tslint.json init 5 years ago

README.md

React Carousel

Please visit to docs website to more details.

Installation

npm i react react-dom @trendyol/react-carousel --save

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { Carousel } from '@trendyol/react-carousel';
import { Item } from './yourItem';

ReactDOM.render(
	<Carousel>
		<Item />
		<Item />
		<Item />
		<Item />
	</Carousel>,
	document.getElementById('root'),
);