Comment on page
Form Config
Look also at Field Config - this is the interesting part where you build the form:
import { FormConfig } from '@tutim/types';
This is an interface representing the configuration for a form. It includes the following property:
interface FormConfig {
formId: string;
fields: FieldConfig[];
layout?: FormLayout;
logic?: FormLogic;
}
formId
: (optional) Id string to represent the formlayout
: (optional) still under development, documentation isn't ready yetlogic
: (optional) still under development, documentation isn't ready yet
Last modified 11mo ago