import React from 'react'; import Container from 'react-bootstrap/Container'; import Col from 'react-bootstrap/Col'; import Row from 'react-bootstrap/Row'; import JobCard from './JobCard'; import { partition } from '../utils'; import { Jobs } from '@/PersonalDataTypes'; export type Props = { jobs: Jobs, heading: string, entriesPerRow?: number, currentHeading?: string, } const defaultProps = { entriesPerRow: 2, currentHeading: 'Currently', } export default function JobHistory(props: Props) { const jobs = props.jobs const config = {...defaultProps, ...props} return (

{config.heading}

{jobs.current && ( )} {partition(jobs.previous, config.entriesPerRow).map((jobs, index) => ( {(jobs.map((job, subindex) => ( )))} ))}
) }