Enterprise-CMCS/macpro-mako

View on GitHub
react-app/src/features/faq/content/mpcGuides.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import IG_g1PDF from "@/assets/mpc/IG_G1_CostSharingRequirements.pdf";
import IG_g2aPDF from "@/assets/mpc/IG_G2a_CostSharingAmountsCN.pdf";
import IG_g2bPDF from "@/assets/mpc/IG_G2b_CostSharingAmountsMN.pdf";
import IG_g2cPDF from "@/assets/mpc/IG_G2c_CostSharingAmountsTargeting.pdf";
import IG_g3PDF from "@/assets/mpc/IG_G3_CostSharingLimitations.pdf";
import { Template } from "./chpRenderSection";

export const MPC_GUIDES: Template[] = [
  {
    title: "G 1",
    text: "Cost-Sharing Requirements Implementation Guide",
    href: IG_g1PDF,
  },
  {
    title: "G 2a",
    text: "Cost-Sharing Amounts - Categorically Needy Implementation Guide",
    href: IG_g2aPDF,
  },
  {
    title: "G 2b",
    text: "Cost-Sharing Amounts - Medically Needy Implementation Guide",
    href: IG_g2bPDF,
  },
  {
    title: "G 2c",
    text: "Cost-Sharing Amounts - Targeting Implementation Guide",
    href: IG_g2cPDF,
  },
  {
    title: "G 3",
    text: "Cost-Sharing Limitations Implementation Guide",
    href: IG_g3PDF,
  },
];