summaryrefslogtreecommitdiff
path: root/src/components/Registry.tsx
diff options
context:
space:
mode:
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;