UNPKG

@storybook/addon-ondevice-controls

Version:

Display storybook controls on your device.

12 lines (11 loc) 313 B
export interface TextProps { arg: { name: string; value: string; type: string; }; onChange: (value: any) => void; isPristine: boolean; } declare const TextType: ({ arg, onChange, isPristine }: TextProps) => import("react/jsx-runtime").JSX.Element; export default TextType;