import React, { PropTypes, Component } from 'react' class Follow extends Component { render = () => { const { isFollowing, onFollow } = this.props return
{isFollowing ? 'Unfollow' : 'Follow'}
} } Follow.propTypes = { isFollowing: PropTypes.bool, onFollow: PropTypes.func } export default Follow