@marciocamello/react-sortable-tree
Version:
Drag-and-drop sortable component for nested data and hierarchies
28 lines (24 loc) • 635 B
JavaScript
import React, { Component } from 'react'
import SortableTree from '../src'
// In your own app, you would need to use import styles once in the app
// import 'react-sortable-tree/styles.css';
export default class App extends Component {
constructor(props) {
super(props)
this.state = {
treeData: [
{ title: 'Chicken', expanded: true, children: [{ title: 'Egg' }] },
],
}
}
render() {
return (
<div style={{ height: 300 }}>
<SortableTree
treeData={this.state.treeData}
onChange={(treeData) => this.setState({ treeData })}
/>
</div>
)
}
}