department-of-veterans-affairs/vets-website

View on GitHub
src/applications/_mock-form-ae-design-patterns/shared/components/alerts/ServerErrorAlert.jsx

Summary

Maintainability
A
2 hrs
Test Coverage
import React from 'react';
import content from '../../locales/en/content.json';

const ServerErrorAlert = () => (
  <va-alert status="error" uswds>
    <h3 slot="headline">{content['alert-server-title']}</h3>
    <div>
      <p>{content['alert-server-message']}</p>
    </div>
  </va-alert>
);

export default ServerErrorAlert;