zent
Version:
一套前端设计语言和基于React的实现
12 lines (11 loc) • 321 B
TypeScript
/// <reference types="react" />
import { IDateCellBase } from '../types';
interface IPanelCellProps {
cells: IDateCellBase[];
col: number;
onSelected: (val: Date) => void;
onHover?: (val: Date) => void;
popText?: string;
}
declare const PanelCell: React.FC<IPanelCellProps>;
export default PanelCell;