import React from 'react'; import Card from 'react-bootstrap/Card'; export type Props = { heading?: string, position: string, timerange: string, company: string, description: string }; export default function JobCard(props: Props) { return ( {props.heading && ( {props.heading} )} {props.position} {props.company}, {props.timerange} {props.description} ); }