All files / react-app/src/features/faq/faqs/waiver waiverb-rai-attachments.tsx

50% Statements 1/2
100% Branches 0/0
0% Functions 0/1
50% Lines 1/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 313x                                                            
export const WaiverBRaiAttachments = () => (
  <>
    <p>
      <span>Note: “*” indicates a required attachment.</span>
    </p>
    <table className="faq-table border-collapse border border-gray-300 w-full">
      <thead>
        <tr>
          <th className="border border-gray-300 px-4 py-2">Attachment Name</th>
          <th className="border border-gray-300 px-4 py-2">Description</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Waiver RAI Response Letter*</td>
          <td className="border border-gray-300 px-4 py-2">
            Official response to CMS to support RAI inquiries for the Waiver submission
          </td>
        </tr>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Other</td>
          <td className="border border-gray-300 px-4 py-2">
            {`Any other documents or spreadsheets that are supplemental to
                    the state's response to RAI`}
          </td>
        </tr>
      </tbody>
    </table>
  </>
);