nebiru-react-file-picker

0.0.7 • Public • Published

react-file-picker

Build Status Coverage Status npm

A simple wrapper around the native file input

npm i react-file-picker

Examples

import { FilePicker } from 'react-file-picker'
 
const MyComponent = () => (
  <FilePicker
    extensions={['md']}
    onChange={FileObject => (/* do something with File object */)}
    onError={errMsg => (/* do something with err msg string */)
  >
    <button>
      Click to upload markdown
    </button>
  </FilePicker>
)
import { ImagePicker } from 'react-file-picker'
 
const MyComponent = () => (
  <ImagePicker
    extensions={['jpg', 'jpeg', 'png']}
    dims={{minWidth: 100, maxWidth: 500, minHeight: 100, maxHeight: 500}}
    onChange={base64 => (/* do something with base64 encoded string */)
    onError={errMsg => (/* do something with err msg string */)
  >
    <button>
      Click to upload image
    </button>
  </ImagePicker>
)

Readme

Keywords

Package Sidebar

Install

npm i nebiru-react-file-picker

Weekly Downloads

2

Version

0.0.7

License

MIT

Unpacked Size

33.7 kB

Total Files

12

Last publish

Collaborators

  • torgo