Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create new inactivity notice skeleton
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 1f7335f commit aca40f5
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions 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 (
<>
<Modal isCentered isOpen={props.isOpen} onClose={props.onClose}>
<ModalOverlay />
<ModalContent>
<ModalHeader>New Inactivity Notice</ModalHeader>
<ModalCloseButton />
<ModalBody></ModalBody>
</ModalContent>
</Modal>
</>
);
}

0 comments on commit aca40f5

Please sign in to comment.