department-of-veterans-affairs/vets-website

View on GitHub
src/applications/enrollment-verification/components/EnrollmentVerificationLoadingIndicator.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import PropTypes from 'prop-types';

export default function EnrollmentVerificationLoadingIndicator({
  message = 'Please wait while we load the application for you.',
}) {
  return (
    <div className="vads-u-margin-y--5">
      <va-loading-indicator label="Loading" message={message} set-focus />
    </div>
  );
}

EnrollmentVerificationLoadingIndicator.propTypes = {
  message: PropTypes.string,
};