department-of-veterans-affairs/vets-website

View on GitHub
src/applications/toe/components/GetHelp.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

export default function GetHelp() {
  return (
    <div className="help-talk">
      <p className="vads-u-margin-top--0">
        If you need help with your application or have questions about
        enrollment or eligibility, submit a request with{' '}
        <a target="_blank" href="https://ask.va.gov/" rel="noreferrer">
          {' '}
          Ask VA.
        </a>
      </p>
      <p className="vads-u-margin-bottom--0">
        If you have technical difficulties using this online application, call
        our MyVA411 main information line at{' '}
        <va-telephone contact="8006982411" /> (
        <va-telephone contact="711" tty />
        ). We're here 24/7.
      </p>
    </div>
  );
}