11 lines
216 B
JavaScript
11 lines
216 B
JavaScript
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
|