import PropTypes from 'prop-types'; import classNames from 'classnames'; export default function DataInputComponent(props) { const { html, title, value, onChange, className, ...rest } = props; const cn = classNames(className, 'flex-col flex-fill'); return (
{html ? (
{/* eslint-disable-next-line react/no-danger */}
        
) : (