department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ezr/components/FormAlerts/DowntimeWarning.jsx

Summary

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

const DowntimeWarning = () => (
  <va-alert status="warning" uswds>
    <h2 slot="headline">{content['alert-downtime-title']}</h2>
    <div>
      <p>{content['alert-downtime-message']}</p>
    </div>
  </va-alert>
);

export default DowntimeWarning;