import React from 'react'; import { Cascader } from 'antd'; import type { CascaderProps, GetProp } from 'antd'; import type { SingleCascaderProps } from 'antd/es/cascader'; type DefaultOptionType = GetProp[number]; interface Option { value: string; label: string; children?: Option[]; disabled?: boolean; } const options: Option[] = [ { value: 'zhejiang', label: 'Zhejiang', children: [ { value: 'hangzhou', label: 'Hangzhou', children: [ { value: 'xihu', label: 'West Lake', }, { value: 'xiasha', label: 'Xia Sha', disabled: true, }, ], }, ], }, { value: 'jiangsu', label: 'Jiangsu', children: [ { value: 'nanjing', label: 'Nanjing', children: [ { value: 'zhonghuamen', label: 'Zhong Hua men', }, ], }, ], }, ]; const onChange: SingleCascaderProps