react-z-swipe

1.1.1 • Public • Published

react-swipe

npm version

A simple react swipe component

Install

yarn add react-z-swipe

Use

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')
)

Development

yarn
yarn run dev

Test

yarn run test

Build

yarn
yarn run build

Publish

npm login
npm version patch
git add -A
git push origin master
npm publish

License

MIT

Package Sidebar

Install

npm i react-z-swipe

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

750 kB

Total Files

18

Last publish

Collaborators

  • svnm