From 1af74782f539e010fd7e45dc2361e661380f0b86 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:49:33 -0400 Subject: [PATCH] Create skeleton infraction modal --- components/NewInactivityNotice.tsx | 1 - components/NewInfractionModal.tsx | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 components/NewInfractionModal.tsx diff --git a/components/NewInactivityNotice.tsx b/components/NewInactivityNotice.tsx index 22f35cb..c2f949c 100644 --- a/components/NewInactivityNotice.tsx +++ b/components/NewInactivityNotice.tsx @@ -11,7 +11,6 @@ export default function (props: { departments: string[]; isOpen: boolean; onClose: () => void; - onOpen: () => void; }) { return ( <> diff --git a/components/NewInfractionModal.tsx b/components/NewInfractionModal.tsx new file mode 100644 index 0000000..bebb7d6 --- /dev/null +++ b/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 ( + + + + New Infraction + + + + + ); +}