department-of-veterans-affairs/vets-website

View on GitHub
src/applications/verify-your-enrollment/components/BenefitsProfileStatement.jsx

Summary

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

const BenefitsProfileStatement = () => {
  return (
    <div id="benefits-gi-bill-profile-statement">
      <h1 id="benefits-gi-bill-profile-statement-title">
        Your Montgomery GI Bill benefits information
      </h1>

      <p className="va-introtext">
        Update your address and direct deposit information for your Montgomery
        GI Bill benefits. You can also review the status of your benefits.
      </p>
      <p className="va-introtext">
        <span className="vads-u-font-weight--bold">Note: </span>
        Any updates you make here will affect your Montgomery GI Bill benefits
        only.
      </p>
    </div>
  );
};

export default BenefitsProfileStatement;