Skip to content

Form

type Form = {
direction?: 'row' | 'col';
id?: string;
key?: string;
onSubmitAction?: ActionConfig;
type: 'Form';
} & BoxBaseProps;
optional direction: "row" | "col";
optional id: string;
optional key: string;
optional onSubmitAction: ActionConfig;
type: 'Form';