Dejvino's Curriculum Vitae
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
362 B

  1. import React from 'react';
  2. import { usePersonContext } from '../hooks/PersonContext';
  3. import JobHistory from './JobHistory';
  4. export default function WorkExperience() {
  5. const person = usePersonContext()
  6. return (
  7. <JobHistory
  8. jobs={person.jobs}
  9. heading='Work Experience'
  10. currentHeading='Current position'
  11. />
  12. )
  13. }