Add buttons to appeal card
This commit is contained in:
parent
b1acf13e68
commit
85dfce6abc
@ -1,5 +1,6 @@
|
|||||||
import {
|
import {
|
||||||
Box,
|
Box,
|
||||||
|
Button,
|
||||||
Card,
|
Card,
|
||||||
CardBody,
|
CardBody,
|
||||||
CardFooter,
|
CardFooter,
|
||||||
@ -43,11 +44,17 @@ export default function (props: {
|
|||||||
</Heading>
|
</Heading>
|
||||||
<Text>{props.learned}</Text>
|
<Text>{props.learned}</Text>
|
||||||
</Box>
|
</Box>
|
||||||
|
<Box>
|
||||||
|
<Button colorScheme="red">Deny</Button>
|
||||||
|
<Button colorScheme="blue" ml="8px">Accept</Button>
|
||||||
|
</Box>
|
||||||
</Stack>
|
</Stack>
|
||||||
</CardBody>
|
</CardBody>
|
||||||
<CardFooter>
|
<CardFooter>
|
||||||
<Text fontSize="xs">
|
<Text fontSize="xs">
|
||||||
Submitted at: {new Date(props.createdAt).toLocaleString()}
|
Submitted at: {new Date(props.createdAt).toLocaleString()}
|
||||||
|
<br />
|
||||||
|
ID: {props.id}
|
||||||
</Text>
|
</Text>
|
||||||
</CardFooter>
|
</CardFooter>
|
||||||
</Card>
|
</Card>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user