UNPKG

zp-bee

Version:

zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

13 lines (12 loc) 412 B
import React from 'react'; export declare type DatePickerGenParams = { list: any[]; datePickerProps: Record<string, any>; defaultType: string; inject: Map<Symbol, Record<string, Function>>; }; interface Props { style?: React.CSSProperties; } declare const datePickerGen: (params: DatePickerGenParams) => React.MemoExoticComponent<(props: Props) => JSX.Element>; export default datePickerGen;