ant-design/components/tree-select/demo/treeData.tsx
Jony J c073d2cb6c
feat(tree-select): popup support semantic dom and deprecated some api (#53285)
* feat(tree-select): popup support semantic dom and deprecated some api

* chore: update demo

* chore: update demo

* fix(compact): update dropdownStyle to styles for better semantic structure

* docs: add space
2025-03-25 20:34:26 +08:00

49 lines
844 B
TypeScript

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<string>();
const onChange = (newValue: string) => {
console.log(newValue);
setValue(newValue);
};
return (
<TreeSelect
style={{ width: '100%' }}
value={value}
styles={{
popup: { maxHeight: 400, overflow: 'auto' },
}}
treeData={treeData}
placeholder="Please select"
treeDefaultExpandAll
onChange={onChange}
/>
);
};
export default App;