DataEntrySection
Installation
import { DataEntrySection } from 'uxp/components';Signature
const DataEntrySection: React.FunctionComponent<DataEntrySectionProps>Examples
tsx
<DataEntrySection title="Personal Information" columns={2}>
<DataEntryField field="firstName" title="First Name" required />
<DataEntryField field="lastName" title="Last Name" required />
<DataEntryField field="email" title="Email" type="email" />
</DataEntrySection>tsx
<DataEntrySection
title="Conditional Section"
show={(data) => data.showAdvanced === true}
columns={3}
separator
>
<DataEntryField field="advanced1" title="Advanced Field 1" />
<DataEntryField field="advanced2" title="Advanced Field 2" />
</DataEntrySection>Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated