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

Whoops, something went wrong:

); }; ErrorList.propTypes = { errors: PropTypes.object.isRequired, }; ErrorList.displayName = 'ErrorList';