🏠TextAreaVersion: NextTextAreaOverviewCodeDesignWhat is this?Text Area is the space where longer text is inputted by users.Handling stateUncontrolledControlled Show CodeControlledControlled Show CodeMax LengthMax length 0 / 120Show CodeHelp textLabel Help textShow CodeErrorWith error Error textShow CodeDisabledDisabled Show CodeUsageimport { useState } from 'react'import { TextArea } from '@vtex/admin-ui'function Example() { const [value, setValue] = useState() return ( <TextArea label="Label" value={value} onChange={(e) => setValue(e.target.value)} /> )}CopyCopy codeShow CodeTextArea PropsNameTypeDescriptionRequiredDefaultlabelstringLabel text✅-helpTextReactNodeHelp text🚫-errorbooleanHas an error🚫-errorTextReactNodeError text🚫-maxLengthnumberMax length🚫-Best PracticesUse the Helper Text to explain in more details how the input is expected to be filled.Add placeholders to clarify the type of content that must be inserted by the user.Do use the required/optional flags when necessary, but prefer using one or another.Add data validation to indicate when data hasn’t been inputted correctly.What is this?Handling stateUncontrolledControlledMax LengthHelp textErrorDisabled