From ad1da0e52f75ac94929f6a99195a69f839107933 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 8 Apr 2019 22:03:39 +0000 Subject: init --- src/Snow.tsx | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/Snow.tsx (limited to 'src/Snow.tsx') diff --git a/src/Snow.tsx b/src/Snow.tsx new file mode 100644 index 0000000..47a1c06 --- /dev/null +++ b/src/Snow.tsx @@ -0,0 +1,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 { + render() { + const { classes } = this.props; + + return ( + + + ); + } +} + +export default withStyles(styles)(Snow); -- cgit v1.2.3