@storybook/addon-ondevice-controls
Version:
Display storybook controls on your device.
10 lines (9 loc) • 330 B
TypeScript
import { ArgTypes } from './ControlsPanel';
interface FormProps {
args: ArgTypes;
isPristine: boolean;
onFieldChange: (value: any) => void;
onReset: () => void;
}
declare const PropForm: ({ args, isPristine, onFieldChange, onReset }: FormProps) => import("react/jsx-runtime").JSX.Element;
export default PropForm;