department-of-veterans-affairs/vets-website

View on GitHub
src/applications/caregivers/components/FormAlerts/SecondaryRequiredAlert.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React, { useEffect } from 'react';
import { focusElement } from 'platform/utilities/ui';

const SecondaryRequiredAlert = () => {
  useEffect(() => {
    focusElement('.caregiver-error-message');
  }, []);

  return (
    <div className="caregiver-error-message">
      <va-alert status="error">
        <h3 slot="headline">You need to add a Family Caregiver</h3>
        <p>
          Select <strong>Back</strong> to add a Primary Caregiver. Or change
          your response here to add a Secondary Caregiver.
        </p>
      </va-alert>
    </div>
  );
};

export default SecondaryRequiredAlert;