aboutsummaryrefslogtreecommitdiff
path: root/src/Grid.tsx
diff options
context:
space:
mode:
authorDeterminant <[email protected]>2019-04-08 22:03:39 +0000
committerDeterminant <[email protected]>2019-04-08 22:03:39 +0000
commitad1da0e52f75ac94929f6a99195a69f839107933 (patch)
tree4d2204ea8c8a9e54058a346662eb354bf4400e13 /src/Grid.tsx
init
Diffstat (limited to 'src/Grid.tsx')
-rw-r--r--src/Grid.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Grid.tsx b/src/Grid.tsx
new file mode 100644
index 0000000..65cf2ec
--- /dev/null
+++ b/src/Grid.tsx
@@ -0,0 +1,17 @@
+import React from 'react';
+import 'typeface-roboto';
+import MGrid from '@material-ui/core/Grid';
+
+
+interface GridProps {
+ classes: {}
+}
+
+class Grid extends React.Component<GridProps> {
+ render() {
+ const { classes } = this.props;
+ return (<div></div>);
+ }
+}
+
+export default Grid;