12 lines
216 B
React
12 lines
216 B
React
![]() |
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
|