This commit is contained in:
Stefan Schwarz 2020-05-03 16:51:20 +02:00
parent 867a2c8ebf
commit e99de57edc
24 changed files with 11772 additions and 187 deletions

15
frontend/layout.js Normal file
View file

@ -0,0 +1,15 @@
import Container from "@material-ui/core/Container";
import Grid from "@material-ui/core/Grid";
export default ({ left, right }) => (
<Container maxWidth="">
<Grid container spacing={1}>
<Grid item xs={4}>
{left}
</Grid>
<Grid item xs={8}>
{right}
</Grid>
</Grid>
</Container>
);