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 417cfce commit 7e2060b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pkgs/app/src/widgets/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
import * as React from 'react'
import * as Mui from '@material-ui/core'
import * as MuiIcons from '@material-ui/icons'

export const Footer: React.FC = () => {
return <>footer</>
return (
<>
<Mui.Box
display="flex"
width="100%"
height="6rem"
justifyContent="center"
alignItems="center"
>
<MuiIcons.GitHub />
</Mui.Box>
</>
)
}

0 comments on commit 7e2060b

Please sign in to comment.