donetick-fe/src/views/Error.jsx

12 lines
216 B
React
Raw Normal View History

import { Typography } from '@mui/joy'
const Error = () => {
return (
<div className='grid min-h-screen place-items-center'>
<Typography level='h1'>404</Typography>
</div>
)
}
export default Error