/
kaws
/
ui-kit-ce
Обзор
Документация
Войти
/
kaws
/
ui-kit-ce
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/textarea/examples/WithError.tsx
20 строк
570 B
Denis Svyatovets
v1.10.0
27 мар 2024, 13:48
27 мар 2024, 13:48
c9029ae
Код
Авторство
О чём код?
import * as React from 'react' import { Textarea } from '@v-uik/base' export const WithError = (): React.ReactElement => { return ( <Textarea error label="Brief description of the area" helperText="Additional description of the area" value="Ordinary district of Moscow" textareaProps={{ 'aria-labelledby': 'with-error-label', 'aria-describedby': 'with-error-helper', 'aria-invalid': true, }} labelProps={{ id: 'with-error-label' }} helperTextProps={{ id: 'with-error-helper' }} /> ) }