26 lines
553 B
JavaScript
26 lines
553 B
JavaScript
import React from 'react';
|
|
import formatDate from '../../utils/formatDate';
|
|
|
|
const ProfileExperience = ({
|
|
experience: { company, title, location, current, to, from, description }
|
|
}) => (
|
|
<div>
|
|
<h3 className="text-dark">{company}</h3>
|
|
<p>
|
|
{formatDate(from)} - {to ? formatDate(to) : 'Now'}
|
|
</p>
|
|
<p>
|
|
<strong>Position: </strong> {title}
|
|
</p>
|
|
<p>
|
|
<strong>Location: </strong> {location}
|
|
</p>
|
|
<p>
|
|
<strong>Description: </strong> {description}
|
|
</p>
|
|
</div>
|
|
);
|
|
|
|
|
|
export default ProfileExperience;
|