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 | 3x 3x | import { PdfList, Template } from "../utils";
export const MPC_GUIDES: Template[] = [
{
title: "Medicaid Cost Sharing Background",
href: "/mpc/IG_CostSharingBackground.pdf",
},
{
title: "Premiums and Cost Sharing Public Notice and General Information Implementation Guide",
href: "/mpc/IG_P&CSSpaImplemntationGuide.pdf",
},
{
title: "G 1",
text: "Cost Sharing Requirements Implementation Guide",
href: "/mpc/IG_G1_CostSharingRequirements.pdf",
},
{
title: "G 2a",
text: "Cost Sharing Amounts - Categorically Needy Implementation Guide",
href: "/mpc/IG_G2a_CostSharingAmountsCN.pdf",
},
{
title: "G 2b",
text: "Cost Sharing Amounts - Medically Needy Implementation Guide",
href: "/mpc/IG_G2b_CostSharingAmountsMN.pdf",
},
{
title: "G 2c",
text: "Cost Sharing Amounts - Targeting Implementation Guide",
href: "/mpc/IG_G2c_CostSharingAmountsTargeting.pdf",
},
{
title: "G 3",
text: "Cost Sharing Limitations Implementation Guide",
href: "/mpc/IG_G3_CostSharingLimitations.pdf",
},
];
export const MpcSpaImplementationGuides = () => (
<section className="space-y-2">
<p>
Medicaid Premiums and Cost Sharing SPA implementation guides can be downloaded at the links
below.
</p>
<PdfList list={MPC_GUIDES} label="template" />
</section>
);
|