summaryrefslogtreecommitdiff
path: root/src/components/Registry.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-02-28 18:20:38 -0800
committerMichael Hunteman <michael@huntm.net>2024-02-28 18:20:38 -0800
commitfa1409d205479e9943f7b7db96a4b56ff1d29d7d (patch)
tree4010f01003d679940f422e72e0e291f9582172d7 /src/components/Registry.tsx
parent064c11060f7a8e1ec5e1a128a7beabd7635991ca (diff)
Resolve type errors
Diffstat (limited to 'src/components/Registry.tsx')
-rw-r--r--src/components/Registry.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/Registry.tsx b/src/components/Registry.tsx
index 8d7fff4..e4f6398 100644
--- a/src/components/Registry.tsx
+++ b/src/components/Registry.tsx
@@ -1,5 +1,4 @@
-import Paper from '@mui/material/Paper';
-import Typography from '@mui/material/Typography';
+import { Paper, Typography } from '@mui/material';
function Registry() {
return (
@@ -8,7 +7,7 @@ function Registry() {
Registry
</Typography>
</Paper>
- )
+ );
}
export default Registry;