department-of-veterans-affairs/vets-website

View on GitHub
src/applications/simple-forms/shared/components/GetFormHelp.jsx

Summary

Maintainability
B
4 hrs
Test Coverage
import React from 'react';

export default function() {
  return (
    <>
      <p className="help-talk">
        <strong>If you have trouble using this online form,</strong> call us at{' '}
        <va-telephone contact="8006982411" /> (
        <va-telephone contact="711" tty />
        ). We&rsquo;re here 24/7.
      </p>
      <p className="help-talk">
        <strong>
          If you need help gathering your information or filling out your form,
        </strong>{' '}
        you can appoint a VA accredited representative.
      </p>
      <va-link
        href="https://www.va.gov/get-help-from-accredited-representative/"
        text="Get help filling out a form"
      />
    </>
  );
}