import {makeStyles} from '@material-ui/core/styles'; const Logo = () => { const classes = useStyles(); return (
Caroster
); }; const useStyles = makeStyles(theme => ({ layout: { display: 'flex', justifyContent: 'center', alignItems: 'center', paddingTop: theme.spacing(4), paddingBottom: theme.spacing(4), }, link: { width: '100%', }, logo: { display: 'block', width: '40%', height: 'auto', margin: '0 auto', }, })); export default Logo;