You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.0 KiB
57 lines
1.0 KiB
import React from 'react';
|
|
import { Cascader, Divider } from 'antd';
|
|
|
|
interface Option {
|
|
value: string;
|
|
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 dropdownRender = (menus: React.ReactNode) => (
|
|
<div>
|
|
{menus}
|
|
<Divider style={{ margin: 0 }} />
|
|
<div style={{ padding: 8 }}>The footer is not very short.</div>
|
|
</div>
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<Cascader options={options} dropdownRender={dropdownRender} placeholder="Please select" />
|
|
);
|
|
|
|
export default App;
|
|
|