lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx
import { Waiver1915bCMSEmail } from "lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS";
import { emailTemplateValue } from "../../../mock-data/new-submission";
const Waiver1915bCMSEmailPreview = () => {
return (
<Waiver1915bCMSEmail
variables={{
...emailTemplateValue,
attachments: {
bCapWaiverApplication: {
label: "1915(b) Comprehensive (Capitated) Waiver Application Pre-print",
files: [
{
filename: "capitated-waiver-application.pdf",
title: "test.pdf",
bucket: "test",
key: "test",
uploadDate: Date.now(),
},
],
},
bCapCostSpreadsheets: {
label: "1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets",
files: [
{
filename: "capitated-waiver-cost-effectiveness-spreadsheet.pdf",
title: "test.pdf",
bucket: "test",
key: "test",
uploadDate: Date.now(),
},
],
},
tribalConsultation: { label: "Tribal Consultation", files: [] },
other: { label: "Other", files: [] },
},
event: "capitated-initial",
id: "CO-1234.R21.00",
authority: "1915(b)",
actionType: "New",
}}
/>
);
};
export default Waiver1915bCMSEmailPreview;