hcmstorybook
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
35 lines (34 loc) • 799 B
TypeScript
/// <reference types="react" />
declare const _default: {
title: string;
component: ({ label, options, field_state }: {
label: string;
options: any;
field_state: string;
}) => JSX.Element;
argTypes: {
label: {
name: string;
defaultValue: string;
control: {
type: string;
};
};
field_state: {
name: string;
control: {
type: string;
options: string[];
};
defaultValue: string;
};
};
args: {
options: {
key: string;
name: string;
}[];
};
};
export default _default;
export declare const Select: any;