portfolio-website/src/components/UnderConstruction.js
2023-11-05 17:18:01 -07:00

14 lines
244 B
JavaScript

import { Typography } from '@mui/material';
import React from 'react'
const UnderConstruction = () => {
return (
<>
<Typography variant="h4">
I really have to finish this...
</Typography>
</>
)
}
export default UnderConstruction;