From aca40f5666f5b3aecf3aef1d83a0fe0d924662a2 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:49:07 -0400 Subject: [PATCH] Create new inactivity notice skeleton --- components/NewInactivityNotice.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 components/NewInactivityNotice.tsx diff --git a/components/NewInactivityNotice.tsx b/components/NewInactivityNotice.tsx new file mode 100644 index 0000000..22f35cb --- /dev/null +++ b/components/NewInactivityNotice.tsx @@ -0,0 +1,28 @@ +import { + Modal, + ModalBody, + ModalCloseButton, + ModalContent, + ModalHeader, + ModalOverlay, +} from "@chakra-ui/react"; + +export default function (props: { + departments: string[]; + isOpen: boolean; + onClose: () => void; + onOpen: () => void; +}) { + return ( + <> + + + + New Inactivity Notice + + + + + + ); +}