department-of-veterans-affairs/vets-website

View on GitHub
src/applications/claims-status/containers/YourClaimLetters/errorComponents/ServerErrorContent.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';

const ServerErrorContent = () => (
  <div className="vads-u-text-align--center">
    <h2 className="vads-u-font-size--h3">We can’t load this page</h2>
    <div className="vads-u-font-size--lg">
      We’re sorry. Something went wrong on our end. Please refresh this page or
      try again later.
    </div>
  </div>
);

export default ServerErrorContent;