import PropTypes from 'prop-types'; import { h } from 'preact'; const domId = 1; const Title = ( { onChange, defaultValue }) => (
) Title.propTypes = { onChange: PropTypes.func.isRequired, defaultValue: PropTypes.string.isRequired, } export default Title;