aboutsummaryrefslogblamecommitdiff
path: root/src/Grid.tsx
blob: 65cf2ec4aeec73e585cccc381217bfafbbecad26 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;