export default function Errors({ errors }) { return errors.map(x => (
  • {x}
  • )); }