department-of-veterans-affairs/vets-website

View on GitHub
src/platform/forms/save-in-progress/MilitaryPrefillMessage.jsx

Summary

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

export default function MilitaryPrefillMessage(props) {
  return (
    <PrefillMessage {...props}>
      We’ve prefilled some of your military service details from your account.
      If you need to correct anything, you can edit the form fields below.
    </PrefillMessage>
  );
}