From 5a5d398dd475d0e97e0a098f8cd8b98781ee2461 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:49:33 -0400 Subject: [PATCH] Create more of new infraction modal --- components/NewInfractionModal.tsx | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/components/NewInfractionModal.tsx b/components/NewInfractionModal.tsx index bebb7d6..c659bb8 100644 --- a/components/NewInfractionModal.tsx +++ b/components/NewInfractionModal.tsx @@ -1,10 +1,14 @@ import { + Button, + Input, Modal, ModalBody, ModalCloseButton, ModalContent, ModalHeader, ModalOverlay, + Select, + Text, } from "@chakra-ui/react"; export default function (props: { isOpen: boolean; onClose: () => void }) { @@ -14,7 +18,26 @@ export default function (props: { isOpen: boolean; onClose: () => void }) { New Infraction - + + User ID + +
+
+ Punishment + +
+
+ Evidence + + +
);