import React from 'react'; import Grid from '@material-ui/core/Grid'; import Typography from '@material-ui/core/Typography'; import Box from '@material-ui/core/Box'; import EventCard from './EventCard'; interface Props { label: string; events: object[]; } const Section = (props: Props) => { const {label, events} = props; return ( {label} {events.map(event => ( ))} ); }; export default Section;