UNPKG

antd-mobile-alita

Version:

基于 React 的移动设计规范实现

15 lines (14 loc) 433 B
import * as React from 'react'; import Item from './ListItem'; import { ListPropsType } from './PropsType'; export interface ListProps extends ListPropsType { prefixCls?: string; className?: string; role?: string; style?: React.CSSProperties; } export default class List extends React.Component<ListProps, any> { static Item: typeof Item; static defaultProps: Partial<ListProps>; render(): JSX.Element; }