aboutsummaryrefslogtreecommitdiffstats
path: root/src/views/Error.jsx
blob: d04fc293e33b476ec2841439c0a225490c3401be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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