UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 290 B
import { CalendarProps } from 'antd'; import { FC } from 'react'; import { CALENDAR } from '../../Types'; export interface ICalendar<DataType = any> { ctype: typeof CALENDAR; props: CalendarProps<DataType>; } declare const Calendar: FC<ICalendar>; export default Calendar;