lib/libs/email/preview/Respond to Rai/CMS/Medicaid_SPA.tsx
import { MedSpaCMSEmail } from "../../../content/respondToRai/emailTemplates/MedSpaCMS";
import { emailTemplateValue } from "../../../mock-data/respond-to-rai";
import * as attachments from "../../../mock-data/attachments";
export default () => {
return (
<MedSpaCMSEmail
variables={{
...emailTemplateValue,
event: "respond-to-rai",
id: "CO-1234.R21.00",
authority: "1915(c)",
actionType: "Amend",
territory: "CO",
attachments: {
revisedAmendedStatePlanLanguage: attachments.other,
officialRAIResponse: attachments.other,
budgetDocuments: attachments.budgetDocuments,
publicNotice: attachments.publicNotice,
tribalConsultation: attachments.tribalConsultation,
other: attachments.other,
},
}}
/>
);
};