mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
7e692ad585
* chore: init * chore: panel style * docs: update demo * chore: fill style * test: update snapshot * docs: update demo * chore: push * docs: update desc * chore: fix icons * chore: use shared hooks * test: update snapshot * chore: fix lint
58 lines
1.0 KiB
TypeScript
58 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { Cascader, Flex } from 'antd';
|
|
|
|
interface Option {
|
|
value: string | number;
|
|
label: string;
|
|
children?: Option[];
|
|
}
|
|
|
|
const options: Option[] = [
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [
|
|
{
|
|
value: 'hangzhou',
|
|
label: 'Hangzhou',
|
|
children: [
|
|
{
|
|
value: 'xihu',
|
|
label: 'West Lake',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'jiangsu',
|
|
label: 'Jiangsu',
|
|
children: [
|
|
{
|
|
value: 'nanjing',
|
|
label: 'Nanjing',
|
|
children: [
|
|
{
|
|
value: 'zhonghuamen',
|
|
label: 'Zhong Hua Men',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const onChange = (value: string[]) => {
|
|
console.log(value);
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Flex vertical gap="small" align="flex-start">
|
|
<Cascader.Panel options={options} onChange={onChange} />
|
|
<Cascader.Panel multiple options={options} onChange={onChange} />
|
|
<Cascader.Panel />
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|