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
376 B

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