diff --git a/components/NewGameBan.tsx b/components/NewGameBan.tsx new file mode 100644 index 0000000..8ea12fc --- /dev/null +++ b/components/NewGameBan.tsx @@ -0,0 +1,46 @@ +import { + Button, + Input, + Modal, + ModalBody, + ModalCloseButton, + ModalContent, + ModalFooter, + ModalHeader, + ModalOverlay, + Radio, + RadioGroup, + Text, +} from "@chakra-ui/react"; + +export default function (props: { isOpen: boolean; onClose: () => void }) { + function reset() { + (document.getElementById("username") as HTMLInputElement).value = ""; + (document.getElementById("evidence") as HTMLInputElement).value = ""; + + props.onClose(); + } + + return ( + + + + New Game Ban + + + Username(s) + +
+
+ +
+
+ + + + +
+ ); +}