all repos — caroster @ 776635f1804664c16f96273ff6cd4985ac41c148

[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;