import React, { useState } from 'react'; import { TreeSelect } from 'antd'; const treeData = [ { title: 'Node1', value: '0-0', children: [ { title: 'Child Node1', value: '0-0-1', }, { title: 'Child Node2', value: '0-0-2', }, ], }, { title: 'Node2', value: '0-1', }, ]; const App: React.FC = () => { const [value, setValue] = useState(); const onChange = (newValue: string) => { console.log(newValue); setValue(newValue); }; return ( ); }; export default App;