All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Form.fields.StandardField.Description.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
/**
 * Описание поля
 * @param {object} props - пропсы
 * @param {string} props.value - текст описания
 * @example
 * 
 */

const descriptionStyle = { fontSize: '0.8em' }
const Description = ({ value, ...props }) => (
    
{value}
) Description.propTypes = { value: PropTypes.string, } export default Description




© 2015 - 2024 Weber Informatics LLC | Privacy Policy