# FormSectionProps

## Definition

```tsx
export interface FormSectionProps {
    fields: DynamicFormFieldProps[]
    columns?: 1 | 2 | 3, // default is 1
    show?: (data: IFormData) => boolean
    title?: string,
    seperator?: boolean
}
```

## Usage

```tsx
import { FormSectionProps } from 'uxp/components';
```

## Related Types

* [DynamicFormFieldProps](https://help.iviva.com/uxp/v5/additional-resources/types/dynamicformfieldprops)
* [FormValue](https://help.iviva.com/uxp/v5/additional-resources/types/formvalue)
* [IFormData](https://help.iviva.com/uxp/v5/additional-resources/types/iformdata)
* [CustomValidateResponse](https://help.iviva.com/uxp/v5/additional-resources/types/customvalidateresponse)
