Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 650 Bytes

README.md

File metadata and controls

34 lines (29 loc) · 650 Bytes

React dropbox chooser

Simple react wrapper for Dropbox Chooser API

Installation

npm install react-dropbox-chooser

Usage

<DropboxChooser 
    appKey={'your-uniq-app-key'}
    success={files => this.onSuccess(files)}
    cancel={() => this.onCancel()}
    multiselect={true}
    extensions={['.mp4']} >
    <div className="dropbox-button">Click me!</div>        
</DropboxChooser>

Demo

npm install
npm start
open http://localhost:8080

Feel free to feel free