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

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

export default Registry;