all repos — caroster @ d13e528834a43efd386673182cc0647513e3b821

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