Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
ndthanhdev committed Jul 11, 2020
1 parent 7e2060b commit 4011096
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion pkgs/app/src/pages/NotFound/NotFound.tsx
@@ -1,6 +1,27 @@
import * as React from 'react'
import * as Mui from '@material-ui/core'
import * as MuiIcons from '@material-ui/icons'

const useClasess = Mui.makeStyles({
zero: {
fontSize: 'inherit',
},
})

export const NotFoundPage: React.FC = () => {
return <Mui.Typography variant="h1"> 404 </Mui.Typography>
const classes = useClasess()
return (
<Mui.Box
display="flex"
flexDirection="column"
justifyContent="center"
alignItems="center"
p="3rem"
>
<Mui.Typography variant="h1">
4<MuiIcons.GitHub className={classes.zero} />4
</Mui.Typography>
<Mui.Typography variant="h6">Didn't find anything here</Mui.Typography>
</Mui.Box>
)
}

0 comments on commit 4011096

Please sign in to comment.