Interface TextAreaProps

interface TextAreaProps {
    containerStyle?: string;
    dataField?: string;
    defaultValue: string;
    inputStyle?: string;
    labelStyle?: string;
    labelTitle?: string;
    placeholder?: string;
    required?: boolean;
    updateFormValue?: (value: string) => void;
}

Properties

containerStyle?: string
dataField?: string
defaultValue: string
inputStyle?: string
labelStyle?: string
labelTitle?: string
placeholder?: string
required?: boolean
updateFormValue?: (value: string) => void
MMNEPVFCICPMFPCPTTAAATR