# react-sortable **Repository Path**: mirrors_fis-components/react-sortable ## Basic Information - **Project Name**: react-sortable - **Description**: Fork from https://github.com/danielstocks/react-sortable.git - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # React Sortable ** VERY MUCH WORK IN PROGRESS ** A React component and mixin for creating sortable interfaces utilizing the HTML5 drag & drop API. Mainly tested in latest stable Webkit and Firefox releases. Check out http://webcloud.se/react-sortable or the index.html file of this repository for an example implementation. For nested sortable data structures: Take a look at http://webcloud.se/react-sortable/nested.html or the nested.html file. This implementation is still highly experimental. ## Get started After cloning the directory run **bower install** to get the react dependencies. Spin up a local webserver serving the project directory (for instance, `python -m http.server` if you have Python 3.X installed, or `python -m SimpleHTTPServer` with Python 2.X) and open it in your browser. ## Example implementation Here's a sample implementation using the react-sortable mixin. ```js /** @jsx React.DOM */ var Sortable = require('react-sortable'); var SortableListItem = React.createClass({ mixins: [Sortable], render: function() { return this.transferPropsTo(