department-of-veterans-affairs/vets-website

View on GitHub
src/applications/caregivers/components/FormDescriptions/AddressCountyDescriptions.jsx

Summary

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

export const CaregiverCountyDescription = () => (
  <va-additional-info
    trigger="Why we ask for this information"
    class="vads-u-margin-y--1p5"
  >
    <p>
      Providing the county helps the Caregiver Support Team connect caregivers
      with community resources that offer supportive programs and services.
    </p>
  </va-additional-info>
);

export const VeteranCountyDescription = () => (
  <va-additional-info
    trigger="Why we ask for this information"
    class="vads-u-margin-y--1p5"
  >
    <p>
      Providing the county where the Veteran lives helps us determine the
      Caregiver Support Team.
    </p>
  </va-additional-info>
);