2.0.3 • Published 6 years ago

react-progressed v2.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

react-progressed

React hooks and components for file uploading

NPM JavaScript Style Guide

Install

npm install --save react-progressed

Usage

import * as React from 'react'
import Progressed from 'react-progressed'

const App = () => {
  const onChange = (e) => {
    console.log(e.target.files)
  }

  const onSubmit = (fileList) => {
    console.log(fileList)
  }

  return (
    <Progressed onSubmit={onSubmit} onChange={onChange}  />
  )
}

License

MIT © pfftdammitchris

2.0.3

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.1

6 years ago