Enterprise-CMCS/macpro-mako

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import g1PDF from "@/assets/mpc/G1.pdf";
import g2aPDF from "@/assets/mpc/G2a.pdf";
import g2bPDF from "@/assets/mpc/G2b.pdf";
import g2cPDF from "@/assets/mpc/G2c.pdf";
import g3PDF from "@/assets/mpc/G3.pdf";
import { Template } from "./chpRenderSection";

export const MPC_TEMPLATES: Template[] = [
  {
    title: "G 1",
    text: "Cost-Sharing Requirements",
    href: g1PDF,
  },
  {
    title: "G 2a",
    text: "Cost-Sharing Amounts - Categorically Needy",
    href: g2aPDF,
  },
  {
    title: "G 2b",
    text: "Cost-Sharing Amounts - Medically Needy",
    href: g2bPDF,
  },
  {
    title: "G 2c",
    text: "Cost-Sharing Amounts - Targeting",
    href: g2cPDF,
  },
  {
    title: "G 3",
    text: " Cost-Sharing Limitations",
    href: g3PDF,
  },
];