department-of-veterans-affairs/vets-website

View on GitHub
src/applications/disability-benefits/all-claims/content/traumaticEventsIntro.jsx

Summary

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

export const eventsPageTitle = 'Traumatic events';

export const eventsIntroDescription = () => {
  return (
    <>
      <p>
        We want to know about any traumatic events during your military service.
        <br />
        <br />
        Any information you provide will help us understand your situation and
        identify evidence to support your claim. All the questions are optional.
        You can provide only details that you’re comfortable sharing.
      </p>
      <h4>Information we’ll ask you for</h4>
      <p>
        We’ll ask you for this information:
        <ul>
          <li>
            Whether your event was related to combat, personal interactions,
            military sexual trauma (MST), something else, or any combination of
            these
          </li>
          <li>
            A brief description, location, and approximate time frame of your
            event
          </li>
          <li>
            Details about any official reports that were filed, if applicable
          </li>
        </ul>
      </p>
      <h4>You can take a break at any time</h4>
      <p>
        We understand that some of the questions may be difficult to answer. You
        can take a break at any time and come back to continue your application
        later. We’ll save the information you’ve entered so far.
      </p>
    </>
  );
};