2.0.3 • Published 4 years ago

react-progressed v2.0.3

Weekly downloads
5
License
MIT
Repository
github
Last release
4 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

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.1

5 years ago