department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ezr/components/FormDescriptions/TipsForUploading.jsx

Summary

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

const TipsForUploading = () => (
  <va-additional-info
    trigger="How to upload files"
    class="vads-u-margin-bottom--3"
    uswds
  >
    <ul>
      <li>Use a .jpg, .png, .pdf, .doc, or .rtf file format</li>
      <li>Upload one file at a time</li>
      <li>Upload files that add up to no more than 10MB or less</li>
      <li>
        If you only have a paper copy, scan or take a photo and upload the image
      </li>
    </ul>
  </va-additional-info>
);

export default TipsForUploading;