summaryrefslogtreecommitdiff
path: root/src/components/Registry.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-02-13 20:38:17 -0600
committerMichael Hunteman <michael@huntm.net>2024-02-13 20:38:17 -0600
commitaa8854adcb9449d2a961c5e4314a223f6e7bcc04 (patch)
treed58e7d5271c52428170aba24e6bded58215b2d2d /src/components/Registry.tsx
Initial commit
Diffstat (limited to 'src/components/Registry.tsx')
-rw-r--r--src/components/Registry.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/Registry.tsx b/src/components/Registry.tsx
new file mode 100644
index 0000000..b07d680
--- /dev/null
+++ b/src/components/Registry.tsx
@@ -0,0 +1,14 @@
+import Paper from '@mui/material/Paper';
+import Typography from '@mui/material/Typography';
+
+function Registry() {
+ return (
+ <Paper>
+ <Typography variant="h4" component="h4">
+ Registry
+ </Typography>
+ </Paper>
+ );
+}
+
+export default Registry;