A simple react swipe component
yarn add react-z-swipe
import Swipe from 'react-z-swipe'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'
class TestComponent extends Component {
render () {
return (
<div>
<Swipe elementId="react-swipe-1" navigation={true}>
<li>
<img src='react.png' />
</li>
<li>
<img src='styled-components.png' />
</li>
<li>
<img src='webpack.png' />
</li>
</Swipe>
<Swipe elementId="react-swipe-2" navigation={false}>
<li>
<img src='react.png' />
</li>
<li>
<img src='styled-components.png' />
</li>
<li>
<img src='webpack.png' />
</li>
</Swipe>
</div>
)
}
}
ReactDOM.render(
<TestComponent />,
document.getElementById('root')
)
yarn
yarn run dev
yarn run test
yarn
yarn run build
npm login
npm version patch
git add -A
git push origin master
npm publish