Changeset 4302312 for client_app/src/components/work
- Timestamp:
- 01/15/21 03:57:59 (4 years ago)
- Branches:
- master
- Children:
- ed3f5c4
- Parents:
- 21175ba
- Location:
- client_app/src/components/work
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
client_app/src/components/work/company_jobs.js
r21175ba r4302312 14 14 {props.userProfile.jobs.map(item =>{ 15 15 return <Jobs 16 title={item.title} 17 description={item.description} 18 accountName={item.accountName} 19 accountEmail={item.accountEmail} 20 skills={item.skillsRequired} 21 type={props.userProfile.type} 16 item={item} 22 17 /> 23 18 })} -
client_app/src/components/work/team_jobs.js
r21175ba r4302312 14 14 {props.userProfile.jobs.map(item =>{ 15 15 return <Jobs 16 title={item.title} 17 description={item.description} 18 accountName={item.accountName} 19 accountEmail={item.accountEmail} 20 skills={item.skillsRequired} 21 type={props.userProfile.type} 16 item={item} 22 17 /> 23 18 })} -
client_app/src/components/work/user_jobs.js
r21175ba r4302312 13 13 {props.userProfile.jobs.map(item =>{ 14 14 return <Jobs 15 title={item.title} 16 description={item.description} 17 accountName={item.accountName} 18 accountEmail={item.accountEmail} 19 skills={item.skillsRequired} 20 type={props.userProfile.type} 15 item={item} 21 16 /> 22 17 })}
Note:
See TracChangeset
for help on using the changeset viewer.