import React from 'react'; export default function ValidationErrors({ errors }) { return ( Object.keys(errors).length > 0 && (
Whoops! Something went wrong.
) ); }