department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ezr/components/FormDescriptions/UpdatedFormAlertDescription.jsx

Summary

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

const UpdatedFormAlertDescription = () => (
  <>
    <p>
      You should know that we updated our online form.{' '}
      <b>If you started applying online before June 20, 2024</b>, you may need
      to provide certain information again.
    </p>
    <p>
      Select <b>Continue your form</b> to use our updated form.
    </p>
  </>
);

export default UpdatedFormAlertDescription;