department-of-veterans-affairs/vets-website

View on GitHub
src/applications/hca/components/FormAlerts/ServerErrorAlert.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const ServerErrorAlert = () => (
  <va-alert status="error" data-testid="hca-server-error-alert" uswds>
    <h2 slot="headline">Something went wrong on our end</h2>
    <p>We’re sorry. Something went wrong on our end. Please try again.</p>
  </va-alert>
);

export default ServerErrorAlert;