department-of-veterans-affairs/vets-website

View on GitHub
src/applications/survivor-dependent-education-benefit/22-5490/components/DirectDepositDescription.jsx

Summary

Maintainability
A
3 hrs
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

const DirectDepositDescription = ({ formContext = {} }) => {
  if (formContext.onReviewPage) {
    return null;
  }

  return (
    <p>
      <strong>Note:</strong> We make payments only through direct deposit, also
      called electronic funds transfer (EFT).
    </p>
  );
};
DirectDepositDescription.propTypes = {
  formContext: PropTypes.shape({
    touched: PropTypes.object,
    submitted: PropTypes.bool,
    hideTitle: PropTypes.bool,
    pageTitle: PropTypes.string,
    reviewMode: PropTypes.bool,
    trackingPrefix: PropTypes.string,
    isLoggedIn: PropTypes.bool,
    prefilled: PropTypes.bool,
    onReviewPage: PropTypes.bool,
  }),
};

export default DirectDepositDescription;