id
Description
Optional. Sets an HTML id for an areaUsage
id?: string | number;
Example
<Field label="Details" position="left">
{({ id }) => (
<TextArea placeholder="Type here" id={id} />
)}
</Field>
Related article: Adding a label
Related sample: TextArea