aboutsummaryrefslogtreecommitdiff
path: root/src/Snow.tsx
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2019-04-08 22:03:39 +0000
committerDeterminant <tederminant@gmail.com>2019-04-08 22:03:39 +0000
commitad1da0e52f75ac94929f6a99195a69f839107933 (patch)
tree4d2204ea8c8a9e54058a346662eb354bf4400e13 /src/Snow.tsx
init
Diffstat (limited to 'src/Snow.tsx')
-rw-r--r--src/Snow.tsx26
1 files changed, 26 insertions, 0 deletions
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<SnowProps> {
+ render() {
+ const { classes } = this.props;
+
+ return (
+ <MGrid container spacing={16} style={{minWidth: 700}}>
+ </MGrid>
+ );
+ }
+}
+
+export default withStyles(styles)(Snow);