1.4.2 • Published 6 years ago
react-sortable-tree-theme-minimal-smartweb v1.4.2
Minimal React Sortable Tree Theme
Features
- Minimalistic Theme for React Sortable Tree
Usage
npm install --save react-sortable-tree-theme-minimal
import React, { Component } from 'react';
import SortableTree from 'react-sortable-tree';
import FileExplorerTheme from 'react-sortable-tree-theme-minimal';
export default class Tree extends Component {
constructor(props) {
super(props);
this.state = {
treeData: [{ title: 'src/', children: [ { title: 'index.js' } ] }],
};
}
render() {
return (
<div style={{ height: 400 }}>
<SortableTree
treeData={this.state.treeData}
onChange={treeData => this.setState({ treeData })}
theme={FileExplorerTheme}
/>
</div>
);
}
}
1.4.2
6 years ago
1.4.1
6 years ago
1.4.0
6 years ago
1.3.19
6 years ago
1.3.18
6 years ago
1.3.17
6 years ago
1.3.16
6 years ago
1.3.15
6 years ago
1.3.14
6 years ago
1.3.13
6 years ago
1.3.12
6 years ago
1.3.11
6 years ago
1.3.10
6 years ago
1.3.9
6 years ago
1.3.8
6 years ago
1.3.7
6 years ago
1.3.6
6 years ago
1.3.5
6 years ago
1.3.4
6 years ago
1.3.3
6 years ago
1.3.2
6 years ago
1.3.1
6 years ago
1.3.0
6 years ago
1.2.3
6 years ago
1.2.2
6 years ago
1.2.1
6 years ago
1.2.0
6 years ago
1.1.2
6 years ago
1.1.1
6 years ago
1.1.0
6 years ago
1.0.9
6 years ago
1.0.8
6 years ago
1.0.7
6 years ago
1.0.6
6 years ago
1.0.5
6 years ago
1.0.4
6 years ago
1.0.3
6 years ago
1.0.2
6 years ago
1.0.1
6 years ago
1.0.0
6 years ago