department-of-veterans-affairs/vets-website

View on GitHub
src/applications/hca/components/FormDescriptions/PostSept11ServiceDescription.jsx

Summary

Maintainability
B
6 hrs
Test Coverage
import React from 'react';

const PostSept11ServiceDescription = (
  <>
    <span>
      Did you serve in any of these Gulf War locations on or after September 11,
      2001?
    </span>
    <ul>
      <li>Afghanistan</li>
      <li>Djibouti</li>
      <li>Egypt</li>
      <li>Jordan</li>
      <li>Lebanon</li>
      <li>Syria</li>
      <li>Yemen</li>
      <li>Uzbekistan</li>
      <li>The air space above any of these locations</li>
    </ul>
  </>
);

export default PostSept11ServiceDescription;