lib/libs/email/preview/Upload Subsequent Documents/CMS/AppK.tsx
import { AppKCMSEmail } from "../../../content/upload-subsequent-documents/emailTemplates";
import { emailTemplateValue } from "../../../mock-data/new-submission";
import * as attachments from "../../../mock-data/attachments";
const AppKCMSEmailPreview = () => {
return (
<AppKCMSEmail
variables={{
...emailTemplateValue,
event: "upload-subsequent-documents",
id: "CO-1234.R21.00",
authority: "1915(c)",
actionType: "Amend",
territory: "CO",
title: "A Perfect Appendix K Amendment Title",
attachments: {
appk: attachments.appk,
other: attachments.other,
},
}}
/>
);
};
export default AppKCMSEmailPreview;