A sortable list component using html5 drag and drop api
npm install react-sortable-list

react-sortable-list is a sortable list component using react and html5 drag and drop api.
yarn add react-sortable-list
``jsx
import SortableList from 'react-sortable-list'
import ReactDOM from 'react-dom'
import React, { Component } from 'react'
class TestComponent extends Component {
render() {
let colors = ['Red', 'Green', 'Blue', 'Yellow', 'Black', 'White', 'Orange']
return (
ReactDOM.render(
``
Uses styled-components 💅 for the base styling.