all repos — caroster @ 5cebc5ee581a8c1bb7674e3b338c56de1cb5d847

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

frontend/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;