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

components.controls.Html.Html.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'

import { Html as HtmlResolver } from '../../widgets/Html/Html'

/**
 * Компонент поле html
 * @param {string} id - id
 * @param {object} model - className
 * @param {boolean} visible
 * @constructor
 */
export function Html({ visible, model, ...rest }) {
    if (!visible) {
        return null
    }

    return (
        
    )
}

Html.propTypes = {
    id: PropTypes.string,
    html: PropTypes.string,
    className: PropTypes.string,
    visible: PropTypes.bool,
    model: PropTypes.object,
}

export default Html




© 2015 - 2024 Weber Informatics LLC | Privacy Policy