department-of-veterans-affairs/vets-website

View on GitHub
src/applications/edu-benefits/components/GetFormHelp.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import { CONTACTS } from '@department-of-veterans-affairs/component-library/contacts';

function GetFormHelp() {
  return (
    <div>
      <p className="help-talk">
        Call us at <va-telephone contact={CONTACTS.VA_BENEFITS} />. We’re here
        Monday through Friday, 8:00 a.m to 9:00 p.m ET. If you have hearing
        loss, call <va-telephone contact={CONTACTS[711]} tty />.
      </p>
    </div>
  );
}

export default GetFormHelp;