import React from 'react'; import MGrid from '@material-ui/core/Grid'; import { Theme, withStyles } from '@material-ui/core/styles'; interface SnowProps { classes: {} } const styles = (theme: Theme) => ({ buttonSpacer: { marginBottom: theme.spacing.unit * 4, }, }); class Snow extends React.Component { render() { const { classes } = this.props; return ( ); } } export default withStyles(styles)(Snow);