import React from 'react'; import { Flex, Tree } from 'antd'; import type { GetProps, TreeDataNode } from 'antd'; const { DirectoryTree } = Tree; const treeData: TreeDataNode[] = [ { title: 'parent 0', key: '0-0', children: [ { title: 'leaf 0-0', key: '0-0-0', isLeaf: true }, { title: 'leaf 0-1', key: '0-0-1', isLeaf: true }, ], }, { title: 'parent 1', key: '0-1', children: [ { title: 'leaf 1-0', key: '0-1-0', isLeaf: true }, { title: 'leaf 1-1', key: '0-1-1', isLeaf: true }, ], }, ]; const sharedProps: GetProps = { treeData, defaultExpandAll: true, onSelect: (keys, info) => { console.log('Trigger Select', keys, info); }, onExpand: (keys, info) => { console.log('Trigger Expand', keys, info); }, }; const DemoOne = () => ; const DemoTwo = () => ; const DemoThree = () => ( ); const BasicDemo = () => ; const NormalDemo = () => ; const NormalCheckDemo = () => ; const NormalDragDemo = () => ; const App = () => ( ); export default App;