department-of-veterans-affairs/vets-website

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

Summary

Maintainability
A
3 hrs
Test Coverage
import React from 'react';
import EnhancedEligibilityDescription from './EnhancedEligibilityDescription';

const ToxicExposureDescription = (
  <>
    <p>
      Next we’ll ask you more questions about your military service history.
    </p>
    <p>
      It’s your choice whether you want to answer these questions. Before you
      decide, here’s what you should know about how we’ll use this information.
    </p>
    <p>
      This will help us determine if you may have had exposure to any toxins or
      other hazards in either of these ways:
    </p>
    <ul>
      <li>
        While deployed to certain areas linked to exposures like Agent Orange,
        burn pits, radiation, or contaminated water
      </li>
      <li>
        By working with chemicals, pesticides, lead, asbestos, certain paints,
        nuclear weapons, x-rays, or other toxins during training or active duty
        service
      </li>
    </ul>
    <p>
      We’ll also determine if you’re more likely to get VA health care benefits.
      We call this "enhanced eligibility status."
    </p>
    <EnhancedEligibilityDescription />
  </>
);

export default ToxicExposureDescription;