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

components.widgets.Form.fields.HtmlField.HtmlField.jsx Maven / Gradle / Ivy

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

import { Html } from '../../../../snippets/Html/Html'

/**
 * Компонент поле html
 * @param {string} id - id
 * @param {string} html - html
 * @param {string} className - className
 * @constructor
 */
export function HtmlField({ id, html, className }) {
    return (
        
    )
}

HtmlField.propTypes = {
    id: PropTypes.string,
    html: PropTypes.string,
    className: PropTypes.string,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy