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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | 3x | import { Appk } from "./appk"; import { AppkAttachments } from "./appk-attachments"; import { FormalRequestWaiver } from "./formal-request-waiver"; import { InitialWaiverIdFormat } from "./initial-waiver-id-format"; import { TemporaryExtensionsBAttachments } from "./temporary-extensions-b-attachments"; import { TemporaryExtensionsCAttachments } from "./temporary-extensions-c-attachments"; import { WaiverAmendmentIdFormat } from "./waiver-amendment-id-format"; import { WaiverCId } from "./waiver-c-id"; import { WaiverExtensionIdFormat } from "./waiver-extension-id-format"; import { WaiverExtensionStatus } from "./waiver-extension-status"; import { WaiverIdHelp } from "./waiver-id-help"; import { WaiverRenewalIdFormat } from "./waiver-renewal-id-format"; import { WaiverBAttachments } from "./waiverb-attachments"; import { WaiverBRaiAttachments } from "./waiverb-rai-attachments"; import { WithdrawPackageWaiver } from "./withdraw-package-waiver"; import { WithdrawWaiverRaiResponse } from "./withdraw-waiver-rai-response"; export const waiverContent = [ { anchorText: "initial-waiver-id-format", question: "What format is used to enter a 1915(b) Initial Waiver number?", answerJSX: <InitialWaiverIdFormat />, }, { anchorText: "waiver-renewal-id-format", question: "What format is used to enter a 1915(b) Waiver Renewal number?", answerJSX: <WaiverRenewalIdFormat />, }, { anchorText: "waiver-amendment-id-format", question: "What format is used to enter a 1915(b) Waiver Amendment number?", answerJSX: <WaiverAmendmentIdFormat />, }, { anchorText: "waiver-id-help", question: "Who can I contact to help me figure out the correct 1915(b) Waiver Number?", answerJSX: <WaiverIdHelp />, }, { anchorText: "waiver-c-id", question: "What format is used to enter a 1915(c) waiver number?", answerJSX: <WaiverCId />, }, { anchorText: "waiverb-attachments", question: "What attachments are needed to submit a 1915(b) waiver action?", answerJSX: <WaiverBAttachments />, }, { anchorText: "waiverb-rai-attachments", question: "What are the attachments for a 1915(b) Waiver and 1915(c) Appendix K response to Request for Additional Information (RAI)?", answerJSX: <WaiverBRaiAttachments />, }, { anchorText: "waiver-extension-id-format", question: "What format is used to enter a 1915(b) or 1915(c) Temporary Extension number?", answerJSX: <WaiverExtensionIdFormat />, }, { anchorText: "waiver-extension-status", question: "Why does the status of my Temporary Extension Request continue to show as 'Submitted'?", answerJSX: <WaiverExtensionStatus />, }, { anchorText: "temporary-extensions-b-attachments", question: "What are the attachments for a 1915(b) Waiver - Request for Temporary Extension?", answerJSX: <TemporaryExtensionsBAttachments />, }, { anchorText: "temporary-extensions-c-attachments", question: "What are the attachments for a 1915(c) Waiver - Request for Temporary Extension?", answerJSX: <TemporaryExtensionsCAttachments />, }, { anchorText: "appk", question: "Can I submit Appendix K amendments in OneMAC?", answerJSX: <Appk />, }, { anchorText: "appk-attachments", question: "What are the attachments for a 1915(c) Appendix K Waiver?", answerJSX: <AppkAttachments />, }, { anchorText: "formal-request-waiver", question: "How do I submit a Formal Request for Additional Information (RAI) Response for a Waiver?", answerJSX: <FormalRequestWaiver />, }, { anchorText: "withdraw-waiver-rai-response", question: "How do I Withdraw a Formal RAI Response for a Medicaid Waiver?", answerJSX: <WithdrawWaiverRaiResponse />, }, { anchorText: "withdraw-package-waiver", question: "How do I Withdraw a Package for a Waiver?", answerJSX: <WithdrawPackageWaiver />, }, ]; |