diff --git a/components/InactivityNoticeCard.tsx b/components/InactivityNoticeCard.tsx new file mode 100644 index 0000000..0656ec8 --- /dev/null +++ b/components/InactivityNoticeCard.tsx @@ -0,0 +1,47 @@ +import { + Box, + Button, + Card, + CardBody, + CardFooter, + CardHeader, + Heading, + Stack, + StackDivider, + Text, +} from "@chakra-ui/react"; + +export default function (props: InactivityNoticeProps) { + return ( + + + Inactivity Notice for {props.user.username} + ID: {props.user.id} + + + }> + + Reason for Inactivity + {props.reason} + + + Start Date + {new Date(props.start).toLocaleDateString()} + + + End Date + {new Date(props.end).toLocaleDateString()} + + + + + + + + + + + ); +}