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 + + + + + + ); +}