components.common.Center.js Maven / Gradle / Ivy
import { Box, Grid } from '@mui/material';
const GridCenter = ({children, minHeight}) => (
{children}
);
export const Center = ({children, direction, ...props}) => {
const flexDirection = direction && direction == 'vertical' && 'column' || 'row'
return (
{children}
)
}
export default GridCenter;