department-of-veterans-affairs/vets-website

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

Summary

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

const VerifiedSuccessStatement = () => {
  return (
    <div>
      <va-alert
        close-btn-aria-label="Close notification"
        status="success"
        visible
        id="success-alert"
      >
        <h2 slot="headline">You have successfully verified your enrollment</h2>
        <p className="vads-u-margin-top--2">
          Your verification will be submitted for processing during the next
          regular business day. Your payment will be deposited within 4 to 6
          business days.
        </p>
      </va-alert>
    </div>
  );
};

export default VerifiedSuccessStatement;