import React, { useState } from 'react'; import { Space, Switch, TreeSelect } from 'antd'; const treeData = [ { value: 'parent 1', title: 'parent 1', children: [ { value: 'parent 1-0', title: 'parent 1-0', children: [ { value: 'leaf1', title: 'leaf1', }, { value: 'leaf2', title: 'leaf2', }, ], }, { value: 'parent 1-1', title: 'parent 1-1', children: [ { value: 'sss', title: 'sss', }, ], }, ], }, ]; const App: React.FC = () => { const [treeLine, setTreeLine] = useState(true); const [showLeafIcon, setShowLeafIcon] = useState(false); return ( setTreeLine(!treeLine)} /> setShowLeafIcon(!showLeafIcon)} /> ); }; export default App;