department-of-veterans-affairs/vets-website

View on GitHub
src/applications/my-education-benefits/components/HowToApplyPost911GiBillV1.jsx

Summary

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

export default function HowToApplyPost911GiBillV1() {
  return (
    <>
      <div className="usa-alert usa-alert-warning">
        <div className="usa-alert-body">
          <h2 className="usa-alert-heading">
            This application is only for the Post-9/11 GI BillĀ®
          </h2>
          <div className="usa-alert-text">
            <p>
              At this time, you can only apply for Post-9/11 GI Bill (Chapter
              33) benefits through this application. If you want to apply for
              other education benefits,{' '}
              <a href="https://www.va.gov/education/eligibility">
                find out what you may be eligible for
              </a>
              .
            </p>
          </div>
        </div>
      </div>
      <br />
    </>
  );
}