aboutsummaryrefslogtreecommitdiff
path: root/src/Snow.tsx
blob: 47a1c068ada117acfbaeeae4cb663df2d11105a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<SnowProps> {
    render() {
        const { classes } = this.props;

        return (
            <MGrid container spacing={16} style={{minWidth: 700}}>
            </MGrid>
        );
    }
}

export default withStyles(styles)(Snow);