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