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 | 3x | export const TemporaryExtensionsBAttachments = () => ( <> <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">Waiver Extension Request*</td> <td className="border border-gray-300 px-4 py-2"> A formal letter addressed to Carrie Smith, Deputy Director of the Disabled and Elderly Health Program Group (DEHPG), requesting a temporary extension beyond the current approved waiver period. </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 Waiver Extension Request </td> </tr> </tbody> </table> </> ); |