/
kaws
/
ui-kit-ce
Обзор
Документация
Войти
/
kaws
/
ui-kit-ce
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/input/examples/InputWithHelperText.tsx
14 строк
383 B
Denis Svyatovets
v1.10.0
27 мар 2024, 13:48
27 мар 2024, 13:48
c9029ae
Код
Авторство
О чём код?
import * as React from 'react' import { Input } from '@v-uik/base' export const InputWithHelperText = (): JSX.Element => { return ( <Input label="Login" helperText="Helper" inputProps={{ id: 'first-case', 'aria-describedby': 'first-case-helper' }} labelProps={{ htmlFor: 'first-case' }} helperTextProps={{ id: 'first-case-helper' }} /> ) }