hcmstorybook
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
55 lines (54 loc) • 1.38 kB
TypeScript
/// <reference types="react" />
declare const _default: {
title: string;
component: ({ label, view, openFirst, isDisable, dateFormate }: {
label: string;
view: any;
openFirst: any;
isDisable: boolean;
dateFormate: string;
}) => JSX.Element;
argTypes: {
label: {
name: string;
control: {
type: string;
};
defaultValue: string;
};
dateFormate: {
name: string;
control: {
type: string;
options: string[];
};
defaultValue: string;
};
view: {
name: string;
control: {
type: string;
options: string[];
};
defaultValue: string;
};
openFirst: {
name: string;
control: {
type: string;
options: string[];
};
defaultValue: string;
};
isDisable: {
name: string;
control: {
type: string;
options: boolean[];
};
defaultValue: boolean;
};
};
};
export default _default;
export declare const BasicDatePicker: any;