lib/libs/email/preview/Respond to Rai/State/Waiver_Capitated.tsx
import { WaiverStateEmail } from "lib/libs/email/content/respondToRai/emailTemplates";
import { emailTemplateValue } from "lib/libs/email/mock-data/respond-to-rai";
import * as attachments from "../../../mock-data/attachments";
export default () => {
return (
<WaiverStateEmail
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,
},
}}
/>
);
};