Fabric ui theme for react-sortable-tree
npm install react-sortable-tree-theme-fabric- Use fabric ui GroupList render node content ,so you can use the feature of it.
``sh`
npm install --save react-sortable-tree-theme-fabric
`jsx
import React, { Component } from 'react';
import SortableTree from 'react-sortable-tree';
import FileExplorerTheme from 'react-sortable-tree-theme-fabric';
export default class Tree extends Component {
constructor(props) {
super(props);
this.state = {
treeData: [
{ title: 'Trained Models' ,
children:[
{
title: 'Income Prediction [trained models]' ,
children:[
{ title: 'Income Prediction [trained models-sub]' }
]
}
]
},
{ title: 'Data Format Conversions' ,
children:[
{ title: 'Convert to ARFF'}
]
},
],
};
}
render() {
return (