All files / react-app/src/features/faq/faqs/waiver appk-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 353x                                                                    
export const AppkAttachments = () => (
  <>
    <p>
      The regulations at 42 C.F.R. §430.25, 431.55 and 42 C.F.R. §441.301 describe the requirements
      for submitting section 1915(b) and 1915(c) waivers.
    </p>
    <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">
            1915(c) Appendix K Amendment Waiver Template*
          </td>
          <td className="border border-gray-300 px-4 py-2">
            Official amendments to 1915(c) waiver programs addressing or in response to Disasters or
            Emergencies.
          </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">
            Supplemental documents for the 1915(c) Appendix K waiver amendment
          </td>
        </tr>
      </tbody>
    </table>
  </>
);