An open API service indexing awesome lists of open source software.

https://github.com/tanvirstreame/toodle-dropzone


https://github.com/tanvirstreame/toodle-dropzone

package reactjs

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Toodle Dropzone

## Table of Contents

* [Installation](#installation)
* [Example](#example)

## Installation

To install, you can use [npm](https://npmjs.org/) or [yarn](https://yarnpkg.com):

$ npm install toodle-dropzone
$ yarn add toodle-dropzone

## Example

Here is a simple example of toodle-dropzone

```jsx
import DropZone from "toodle-dropzone";

const App = () => {
const handleFileOnChange = (file) => {
console.log(file);
console.log(file.name);
}
return (



Drag or Upload


);
}

export default App;

```