UNPKG

antd-mobile

Version:

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

19 lines (18 loc) 420 B
import * as React from 'react'; export interface ListProps { /** web only */ prefixCls?: string; style?: React.CSSProperties; /** web only */ className?: string; title?: React.ReactNode; footer?: React.ReactNode; children?: any; } export interface ListBodyProps { error?: boolean; style?: React.CSSProperties; children?: any; prefixCls?: string; className?: string; }