UNPKG

indproblr-react-datepicker

Version:

Flexible, Reusable, Mobile friendly DatePicker Component

11 lines (10 loc) 280 B
import * as React from 'react'; interface Props { className?: string; text?: string; subText?: string; onClick?: (text: string) => void; onMouseOver?: (text: string) => void; } declare const Cell: React.FunctionComponent<Props>; export default Cell;