All files / react-app/src/features/faq/faqs/spa chip-spa-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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 563x                                                                                                              
export const ChipSpaRaiAttachments = () => (
  <>
    <p>Note: “*” indicates a required attachment.</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">Revised Amended State Plan Language*</td>
          <td className="border border-gray-300 px-4 py-2">
            Revision made to the amended state plan language of the CHIP SPA submission. State to
            provide a redline version and a clean version of the revised amended state plan pages
          </td>
        </tr>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Official RAI Response*</td>
          <td className="border border-gray-300 px-4 py-2">
            Official response to CMS to support RAI inquiries for the CHIP SPA submission
          </td>
        </tr>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Budget Documents</td>
          <td className="border border-gray-300 px-4 py-2">
            Updated 1-year budget if applicable of the State’s planned expenditures if the CHIP SPA
            submission has a significant impact on the approved budget
          </td>
        </tr>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Public Notice</td>
          <td className="border border-gray-300 px-4 py-2">
            Process used by the State if applicable to accomplish involvement of the public that
            occurred specifically for this CHIP SPA submission
          </td>
        </tr>
        <tr>
          <td className="border border-gray-300 px-4 py-2">Tribal Consultation</td>
          <td className="border border-gray-300 px-4 py-2">
            Consultation process with Indian Tribes if applicable that occurred specifically for
            this CHIP SPA 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">
            Other document(s) needed to process the CHIP SPA submission
          </td>
        </tr>
      </tbody>
    </table>
  </>
);