Form
type Form = { direction?: 'row' | 'col'; id?: string; key?: string; onSubmitAction?: ActionConfig; type: 'Form';} & BoxBaseProps;Type Declaration
Section titled “Type Declaration”direction?
Section titled “direction?”optional direction: "row" | "col";optional id: string;optional key: string;onSubmitAction?
Section titled “onSubmitAction?”optional onSubmitAction: ActionConfig;type: 'Form';