-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added volunteer section to professional theme
- Loading branch information
1 parent
40b46fe
commit ff68ace
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
packages/jsonresume-theme-professional/src/ui/Volunteer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import Section from './Section'; | ||
import Experience from './Experience'; | ||
|
||
const Volunteer = ({ volunteer }) => { | ||
if (!volunteer) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<div> | ||
<Section title="Volunteer"> | ||
{volunteer.map((w, key) => { | ||
return ( | ||
<Experience | ||
title={w.position} | ||
subTitle={w.organization} | ||
startDate={w.startDate} | ||
endDate={w.endDate} | ||
summary={w.summary} | ||
highlights={w.highlights} | ||
key={key} | ||
/> | ||
); | ||
})} | ||
</Section> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Volunteer; |