lib/libs/email/preview/Withdraw Package/State/AppK.tsx
import { WaiverStateEmail } from "lib/libs/email/content/withdrawPackage/emailTemplates";
import { emailTemplateValue } from "lib/libs/email/mock-data/new-submission";
import * as attachments from "../../../mock-data/attachments";
export default () => {
return (
<WaiverStateEmail
variables={{
...emailTemplateValue,
authority: "1915(c)",
event: "withdraw-package",
id: "CO-1234.R21.00",
actionType: "",
attachments: {
officialWithdrawalLetter: attachments.withdrawRequest,
supportingDocumentation: attachments.supportingDocumentation,
},
}}
/>
);
};