all repos — caroster @ 0a157f5b51b85a50e27d205dc4db64776b5d6182

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