UNPKG

d2-ui

Version:
48 lines (46 loc) 2 kB
import React from 'react'; import TreeView from '../../src/tree-view/TreeView.component'; export default class extends React.Component { render() { return ( <div> <TreeView label="Root 1" initiallyExpanded> <TreeView label="Branch 1" initiallyExpanded> <div>Branch 1 Leaf 1</div> <div>Branch 1 Leaf 2</div> <div>Branch 1 Leaf 3</div> </TreeView> <TreeView label="Branch 2" initiallyExpanded> <div>Branch 2 Leaf 1</div> <div>Branch 2 Leaf 2</div> <div>Branch 2 Leaf 3</div> </TreeView> </TreeView> <TreeView label="Root 2" initiallyExpanded> <TreeView label="Branch 1" initiallyExpanded> <div>Branch 1 Leaf 1</div> <div>Branch 1 Leaf 2</div> <div>Branch 1 Leaf 3</div> </TreeView> <TreeView label="Branch 2" initiallyExpanded> <div>Branch 2 Leaf 1</div> <div>Branch 2 Leaf 2</div> <div>Branch 2 Leaf 3</div> </TreeView> </TreeView> <TreeView label="Root 3" initiallyExpanded> <TreeView label="Branch 1" initiallyExpanded> <div>Branch 1 Leaf 1</div> <div>Branch 1 Leaf 2</div> <div>Branch 1 Leaf 3</div> </TreeView> <TreeView label="Branch 2" initiallyExpanded> <div>Branch 2 Leaf 1</div> <div>Branch 2 Leaf 2</div> <div>Branch 2 Leaf 3</div> </TreeView> </TreeView> </div> ); } }