department-of-veterans-affairs/vets-website

View on GitHub
src/applications/letters/components/NoAddressBanner.jsx

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';

export default function NoAddressBanner() {
  return (
    <>
      <va-alert status="warning" className="vads-u-margin-bottom--4">
        <h3 slot="headline">We don’t have a valid address on file for you</h3>
        <div>
          You’ll need to{' '}
          <a href="/profile/contact-information">update your address</a> before
          you can view and download your VA letters or documents.
        </div>
      </va-alert>
      <p />
    </>
  );
}