Enterprise-CMCS/macpro-mako

View on GitHub
lib/libs/email/preview/Withdraw Rai/CMS/Waiver_Contracting.tsx

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { Waiver1915bCMSEmail } from "lib/libs/email/content/withdrawRai/emailTemplates";
import { emailTemplateValue } from "lib/libs/email/mock-data/withdraw-rai";
import { relatedEvent } from "./AppK";
import * as attachments from "../../../mock-data/attachments";

export default () => {
  return (
    <Waiver1915bCMSEmail
      relatedEvent={relatedEvent}
      variables={{
        ...emailTemplateValue,
        origin: "mako",
        event: "respond-to-rai",
        id: "CO-24-1234",
        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,
        },
      }}
    />
  );
};