|
Java example source code file (package.json)
The package.json Java example source code{ "name": "react-dropzone", "version": "1.0.1", "description": "Simple HTML5 drag-drop zone in React", "main": "index.js", "keywords": [ "react-component", "react", "drag", "drop", "upload" ], "browserify": { "transform": [ [ "reactify", { "harmony": true } ] ] }, "repository": { "type": "git", "url": "git@github.com:paramaggarwal/react-dropzone.git" }, "bugs": { "url": "https://github.com/paramaggarwal/react-dropzone/issues" }, "homepage": "https://github.com/paramaggarwal/react-dropzone", "author": { "name": "Param Aggarwal" }, "license": "MIT", "readme": "react-dropzone\n=================\n\nSimple HTML5 drag-drop zone in React.js.\n\n[![Screenshot of Dropzone](https://raw.githubusercontent.com/paramaggarwal/react-dropzone/master/screenshot.png)](http://paramaggarwal.github.io/react-dropzone/)\n\nDemo: http://paramaggarwal.github.io/react-dropzone/\nUsage\n=====\n\nSimply `require('react-dropzone')` and specify an `onDrop` method that accepts an array of dropped files. You can customize the content of the Dropzone by specifying children to the component.\n\nYou can also specify a `style` object to apply to the `Dropzone` component. Optionally pass in a `size` property to configure the size of the Dropzone.\n\n```jsx\n\n/** @jsx React.DOM */\nvar React = require('react');\nvar Dropzone = require('react-dropzone');\n\nvar DropzoneDemo = React.createClass({\n onDrop: function (files) {\n console.log('Received files: ', files);\n },\n\n render: function () {\n return (\n <div>\n Other Java examples (source code examples)Here is a short list of links related to this Java package.json source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.