import { h } from 'preact'; import PropTypes from 'prop-types'; const Notice = ({ published }) => (
{published ? 'Publishing...' : 'Saving Draft...'}
); Notice.propTypes = { published: PropTypes.bool.isRequired, }; export default Notice;