# DataEntryFormProps

Props for the DataEntryForm component

## Definition

```tsx
export interface DataEntryFormProps<T = any> extends Omit<DynamicFormProps, 'formStructure'> {
    /**
     * Current item data to populate form fields
     */
    item?: Partial<T>;

    /**
     * DataEntrySection components defining the form structure
     */
    children?: React.ReactNode;
}
```

## Usage

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

## Related Types

* [DynamicFormProps](https://help.iviva.com/uxp/v5/additional-resources/types/dynamicformprops)
* [FormSectionProps](https://help.iviva.com/uxp/v5/additional-resources/types/formsectionprops)
* [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)
