summaryrefslogtreecommitdiff
path: root/src/components/Registry.tsx
blob: e4f63985397f8cb03359f061f65462b5620a7009 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { Paper, Typography } from '@mui/material';

function Registry() {
  return (
    <Paper>
      <Typography variant="h6">
        Registry
      </Typography>
    </Paper>
  );
}

export default Registry;