Improvements for certificates table, adds expansion object to certificates

This commit is contained in:
Jamie Curnow
2023-01-14 09:45:08 +10:00
parent 6c76c041c4
commit 456c59c746
9 changed files with 95 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
import { Text, TextProps } from "@chakra-ui/react";
function Monospace(props: TextProps) {
return (
<Text as="span" className="monospace" {...props}>
{props.children}
</Text>
);
}
export { Monospace };