antd-mobile-alita
Version:
基于 React 的移动设计规范实现
13 lines (12 loc) • 374 B
TypeScript
/// <reference types="react" />
import { DataItem } from './PropsType';
export interface PropsType {
subMenuPrefixCls?: string;
radioPrefixCls?: string;
subMenuData: DataItem[];
showSelect: boolean;
onSel: (dataItem: DataItem) => void;
selItem: DataItem[];
multiSelect?: boolean;
}
export default function SubMenu(props: PropsType): JSX.Element;