UNPKG

@jdcfe/yep-react

Version:

一套移动端的React组件库

20 lines (19 loc) 605 B
import * as React from 'react'; import CellItem from './CellItem'; export interface CellProps { prefixCls?: string; className?: string; style?: React.CSSProperties; renderHeader: (() => void) | React.ReactNode; renderFooter: (() => void) | React.ReactNode; } export default class Cell extends React.PureComponent<CellProps, any> { static Item: typeof CellItem; static Brief: React.FunctionComponent<import("./CellItem").BriefProps>; static defaultProps: { prefixCls: string; style: {}; }; constructor(props: CellProps); render(): JSX.Element; }