import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Link } from '@gatsbyjs/reach-router'; import { siteRoot } from '../../utils/constants'; const propTypes = { email: PropTypes.string, name: PropTypes.string.isRequired }; class UserLink extends Component { render() { return {this.props.name}; } } UserLink.propTypes = propTypes; export default UserLink;