mirror of
https://github.com/D4M13N-D3V/comissions-app-ui.git
synced 2025-03-14 08:15:08 +00:00
19 lines
532 B
TypeScript
19 lines
532 B
TypeScript
// ** MUI Imports
|
|
import Box from '@mui/material/Box'
|
|
import Link from '@mui/material/Link'
|
|
import { Theme } from '@mui/material/styles'
|
|
import Typography from '@mui/material/Typography'
|
|
import useMediaQuery from '@mui/material/useMediaQuery'
|
|
|
|
const FooterContent = () => {
|
|
// ** Var
|
|
const hidden = useMediaQuery((theme: Theme) => theme.breakpoints.down('md'))
|
|
|
|
return (
|
|
<Box sx={{ display: 'flex', flexWrap: 'wrap', alignItems: 'center', justifyContent: 'space-between' }}>
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default FooterContent
|