UNPKG

adui

Version:

<div> <img src="https://wxa.wxs.qq.com/mpweb/delivery/legacy/wxadtouch/upload/t1/od834zef_52939fc6.png" style="margin:40px 0 0 -8px; background-color: #fcfcfc; box-shadow: none;" /> </div>

15 lines (14 loc) 346 B
import * as React from "react"; import "./style"; export interface ICaptionProps { [key: string]: any; date: Date; maxDate: Date; minDate: Date; onDateChange: (date: Date, e: React.FormEvent<HTMLSelectElement>) => void; } /** * 日期选择 Caption */ declare const Caption: React.FC<ICaptionProps>; export default Caption;