department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/accreditation/21a/components/02-military-service-chapter/MilitaryServiceIntro.jsx

Summary

Maintainability
A
2 hrs
Test Coverage
import React from 'react';

const MilitaryServiceIntro = () => (
  <>
    <p>
      Over the next few pages, we will ask you questions about your military
      service history. If you have served in the military, you will need to
      provide the following:
    </p>
    <ul>
      <li>Branch of service</li>
      <li>Service start and end dates (month/year)</li>
      <li>Character of discharge</li>
    </ul>
  </>
);

export default MilitaryServiceIntro;