import React from 'react'; import PropTypes from 'prop-types'; import formatDate from '../../utils/formatDate'; const ProfileEducation = ({ education: { school, degree, fieldofstudy, current, to, from, description } }) => (
{formatDate(from)} - {to ? formatDate(to) : 'Now'}
Degree: {degree}
Field Of Study: {fieldofstudy}
Description: {description}