https://github.com/tanvirstreame/toodle-dropzone
https://github.com/tanvirstreame/toodle-dropzone
package reactjs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tanvirstreame/toodle-dropzone
- Owner: tanvirstreame
- Created: 2022-02-02T21:16:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-02T21:42:05.000Z (over 3 years ago)
- Last Synced: 2024-02-23T06:02:42.100Z (over 1 year ago)
- Topics: package, reactjs
- Language: JavaScript
- Homepage:
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```