All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.common.Center.js Maven / Gradle / Ivy

There is a newer version: 0.80.3
Show newest version
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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy