Tinder style swipe cards
Install
$ npm install react-swipe-card -save
import Cards, { Card } from 'react-swipe-card'
const data = ['Alexandre', 'Thomas', 'Lucien']
const Wrapper = () => {
return (
<Cards onEnd={action('end')} className='master-root'>
{data.map(item =>
<Card
onSwipeLeft={action('swipe left')}
onSwipeRight={action('swipe right')}>
<h2>{item}</h2>
</Card>
)}
</Cards>
)
}
Props:
- className: string
- onEnd: function
- alertRight: component
- alertLeft: component
- alertTop: component
- alertBottom: component
Props:
- onSwipeLeft: function
- onSwipeRight: function
- onSwipeTop: function
- onSwipeBottom: function