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 8e5e7ae7ba Release version 1.0.5 4 years ago
.circleci Update config.yml 5 years ago
__tests__ Fix tests 4 years ago
src Remove react memo usage. 4 years ago
website Bump websocket-extensions from 0.1.3 to 0.1.4 in /website 4 years ago
.dockerignore init 5 years ago
.editorconfig Update .editorconfig 5 years ago
.gitignore init 5 years ago
.npmignore update .npmignore 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 Add documentation for scrolling-carousel 4 years ago
docker-compose.yml init 5 years ago
jest.config.js Add test 4 years ago
package-lock.json Publish package v1. 5 years ago
package.json Release version 1.0.5 4 years ago
rollup.config.js init 5 years ago
tsconfig.json Change ts target. 4 years ago
tslint.json init 5 years ago

README.md

React Carousel

Circleci codecov.io badgen.net npm version

Please visit to docs website for more details.

Installation

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

Usage

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

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

License

Distributed under the MIT License. See LICENSE for more information.