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