blob: b07d680ad75c577c24f333eac9dc81db7b4e9bf9 (
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="h4" component="h4">
Registry
</Typography>
</Paper>
);
}
export default Registry;
|