import { h } from 'preact'; import PropTypes from 'prop-types'; export const ErrorList = ({ errors }) => { return (

Whoops, something went wrong:

); }; ErrorList.propTypes = { errors: PropTypes.objectOf(PropTypes.string).isRequired, }; ErrorList.displayName = 'ErrorList';