Interface FormStructure

Top-level structure of the form. A form is composed of several sections, which are displayed as distinct tabs, each containing several fields.

interface FormStructure {
    sections: FormSection[];
    title?: string;
}

Properties

Properties

sections: FormSection[]

A form contains several sections, each displayed as a tab.

title?: string

The title of the form is shown at the top throughout the application.

Generated using TypeDoc