Skip to content

react-z/react-pull-down

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-z-pull-down

npm version

A simple react pull down component

Install

yarn add react-z-pull-down

Use

import PullDown from 'react-z-pull-down'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'

class TestComponent extends Component {
  render() {
    return (
      <div>
        <PullDown />
        <div>You can pull me down!</div>
      </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

About

A simple react pull down component

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published