all repos — caroster @ 06074413a139ee783b1268b024601101738c0239

[Octree] Group carpool to your event https://caroster.io

app/src/containers/DashboardEvents/Section.js (view raw)

 1import React from 'react';
 2import Grid from '@material-ui/core/Grid';
 3import Typography from '@material-ui/core/Typography';
 4
 5const Section = ({children}) => (
 6  <Grid item xs={12}>
 7    <Typography gutterBottom variant="h6" component="h3">
 8      {children}
 9    </Typography>
10  </Grid>
11);
12
13export default Section;