Package Exports
- react-dnd-touch-backend
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-dnd-touch-backend) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-dnd-touch-backend
Touch Backend for react-dnd
Usage
Follow react-dnd docs to setup your app. Then swap out HTML5Backend for TouchBackend as such:
import { default as TouchBackend } from 'react-dnd-touch-backend';
import { DragDropContext } from 'react-dnd';
var YourApp = React.createClass(
/* ... */
);
module.exports = DragDropContext(TouchBackend)(YourApp);Examples
The examples folder has a sample integration. In order to build it, run:
npm i && gulp exampleThen, open examples/index.html in a mobile browser.
Code licensed under the MIT license. See LICENSE file for terms.