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