Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Create skeleton infraction modal
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 8b18454 commit 1af7478
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
1 change: 0 additions & 1 deletion components/NewInactivityNotice.tsx
Expand Up @@ -11,7 +11,6 @@ export default function (props: {
departments: string[];
isOpen: boolean;
onClose: () => void;
onOpen: () => void;
}) {
return (
<>
Expand Down
21 changes: 21 additions & 0 deletions components/NewInfractionModal.tsx
@@ -0,0 +1,21 @@
import {
Modal,
ModalBody,
ModalCloseButton,
ModalContent,
ModalHeader,
ModalOverlay,
} from "@chakra-ui/react";

export default function (props: { isOpen: boolean; onClose: () => void }) {
return (
<Modal isCentered isOpen={props.isOpen} onClose={props.onClose}>
<ModalOverlay />
<ModalContent>
<ModalHeader>New Infraction</ModalHeader>
<ModalCloseButton />
<ModalBody></ModalBody>
</ModalContent>
</Modal>
);
}

0 comments on commit 1af7478

Please sign in to comment.