Newer
Older
import React from 'react'
import { withStyles } from '@material-ui/core/styles'
const styles = theme => ({
containerDefault: {
padding: `${theme.spacing(1)}px ${theme.spacing(2)}px`
},
containerSquare: {
padding: `${theme.spacing(2)}px ${theme.spacing(2)}px`
}
})
class GridView extends React.Component {
vkovtun
committed
<div>GridView</div>
export default withStyles(styles)(GridView)