mirror of
https://github.com/20kaushik02/portfolio-website.git
synced 2025-12-06 08:14:07 +00:00
14 lines
244 B
JavaScript
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; |