# react-dnd-touch-backend **Repository Path**: mirrors_gaearon/react-dnd-touch-backend ## Basic Information - **Project Name**: react-dnd-touch-backend - **Description**: Touch Backend for react-dnd - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README react logo # react-dnd-touch-backend [![npm version](https://badge.fury.io/js/react-dnd-touch-backend.svg)](http://badge.fury.io/js/react-dnd-touch-backend) [![Dependency Status](https://david-dm.org/yahoo/react-dnd-touch-backend.svg)](https://david-dm.org/yahoo/react-dnd-touch-backend) [![devDependency Status](https://david-dm.org/yahoo/react-dnd-touch-backend/dev-status.svg)](https://david-dm.org/yahoo/react-dnd-touch-backend#info=devDependencies) Touch Backend for [react-dnd](https://github.com/gaearon/react-dnd) ## Usage Follow [react-dnd docs](http://gaearon.github.io/react-dnd/) to setup your app. Then swap out `HTML5Backend` for `TouchBackend` as such: ```js 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: ```bash npm i && gulp example ``` Then, open `examples/index.html` in a mobile browser. Code licensed under the MIT license. See LICENSE file for terms.