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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | 3x | import { AbpImplementationGuidesSpa } from "./abp-implementation-guides-spa"; import { AbpSpaTemplates } from "./abp-spa-templates"; import { ChipSpaAttachments } from "./chip-spa-attachments"; import { ChipSpaImplementationGuides } from "./chip-spa-implementation-guides"; import { ChipSpaRaiAttachments } from "./chip-spa-rai-attachments"; import { ChipSpaTemplates } from "./chip-spa-templates"; import { FormalRequestChipSpa } from "./formal-request-chip-spa"; import { FormalRequestMedicaidSpa } from "./formal-request-medicaid-spa"; import { MedicaidSpaAttachments } from "./medicaid-spa-attachments"; import { MedicaidSpaRaiAttachments } from "./medicaid-spa-rai-attachments"; import { MpcSpaImplementationGuides } from "./mpc-spa-implementation-guides"; import { MpcSpaTemplates } from "./mpc-spa-templates"; import { PublicHealthEmergency } from "./public-health-emergency"; import { SpaAmendments } from "./spa-amendments"; import { SpaIdFormat } from "./spa-id-format"; import { WithdrawChipSpaRaiResponse } from "./withdraw-chip-spa-rai-response"; import { WithdrawPackageChipSpa } from "./withdraw-package-chip-spa"; import { WithdrawPackageSpa } from "./withdraw-package-spa"; import { WithdrawSpaRaiResponse } from "./withdraw-spa-rai-response"; export const spaContent = [ { anchorText: "spa-amendments", question: "Which state plan amendments (SPAs) can I submit in OneMAC?", label: "Updated", // Add a `label` field for LD faq labelColor: "green", answerJSX: <SpaAmendments />, }, { anchorText: "spa-id-format", question: "What format is used to enter a SPA ID?", answerJSX: <SpaIdFormat />, }, { anchorText: "medicaid-spa-attachments", question: "What are the attachments for a Medicaid SPA?", answerJSX: <MedicaidSpaAttachments />, }, { anchorText: "medicaid-spa-rai-attachments", question: "What are the attachments for a Medicaid response to Request for Additional Information (RAI)?", answerJSX: <MedicaidSpaRaiAttachments />, }, { anchorText: "chip-spa-attachments", question: "What are the attachments for a CHIP SPA?", label: "Updated", // Add a `label` field for LD faq labelColor: "green", answerJSX: <ChipSpaAttachments />, }, { anchorText: "chip-spa-rai-attachments", question: "What are the attachments for a CHIP SPA response to Request for Additional Information (RAI)?", answerJSX: <ChipSpaRaiAttachments />, }, { anchorText: "public-health-emergency", question: "Can I submit SPAs relating to the Public Health Emergency (PHE) in OneMAC?", answerJSX: <PublicHealthEmergency />, }, { anchorText: "formal-request-medicaid-spa", question: "How do I submit a Formal Request for Additional Information (RAI) Response for a Medicaid SPA?", answerJSX: <FormalRequestMedicaidSpa />, }, { anchorText: "withdraw-spa-rai-response", question: "How do I Withdraw a Formal RAI Response for a Medicaid SPA?", answerJSX: <WithdrawSpaRaiResponse />, }, { anchorText: "withdraw-package-spa", question: "How do I Withdraw a Package for a Medicaid SPA?", answerJSX: <WithdrawPackageSpa />, }, { anchorText: "formal-request-chip-spa", question: "How do I submit a Formal Request for Additional Information (RAI) Response for a CHIP SPA?", answerJSX: <FormalRequestChipSpa />, }, { anchorText: "withdraw-chip-spa-rai-response", question: "How do I Withdraw a Formal RAI Response for a CHIP SPA?", answerJSX: <WithdrawChipSpaRaiResponse />, }, { anchorText: "withdraw-package-chip-spa", question: "How do I Withdraw a Package for a CHIP SPA?", answerJSX: <WithdrawPackageChipSpa />, }, { anchorText: "abp-spa-templates", question: "Where can I download Medicaid Alternative Benefit Plan (ABP) SPA templates?", label: "Updated", labelColor: "green", answerJSX: <AbpSpaTemplates />, }, { anchorText: "abp-implementation-guides-spa", question: "Where can I download Medicaid Alternative Benefit Plan (ABP) SPA implementation guides?", label: "New", labelColor: "blue", answerJSX: <AbpImplementationGuidesSpa />, }, { anchorText: "mpc-spa-templates", question: "Where can I download Medicaid Premiums and Cost Sharing SPA templates?", label: "New", labelColor: "blue", answerJSX: <MpcSpaTemplates />, }, { anchorText: "mpc-spa-implementation-guides", question: "Where can I download Medicaid Premiums and Cost Sharing SPA implementation guides?", label: "New", labelColor: "blue", answerJSX: <MpcSpaImplementationGuides />, }, { anchorText: "chip-spa-templates", question: "Where can I download CHIP eligibility SPA templates?", label: "Updated", labelColor: "green", answerJSX: <ChipSpaTemplates />, }, { anchorText: "chip-spa-implementation-guides", question: "Where can I download CHIP eligibility SPA implementation guides?", label: "Updated", labelColor: "green", answerJSX: <ChipSpaImplementationGuides />, }, ]; |