department-of-veterans-affairs/vets-website

View on GitHub
src/applications/accredited-representative-portal/accreditation/21a/components/05-professional-affiliations-chapter/ProfessionalAffiliationsIntro.jsx

Summary

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

const ProfessionalAffiliationsIntro = () => (
  <>
    <p>
      Over the next few pages, we will ask you to provide information about any
      jurisdictions, agencies, or courts you are admitted to practice before.
      For each jurisdiction, agency, or court, you will need to provide the
      following information:
    </p>
    <ul>
      <li>Name of jurisdiction, agency, or court</li>
      <li>Date of admission (month/year)</li>
      <li>Membership or registration number</li>
    </ul>
  </>
);

export default ProfessionalAffiliationsIntro;