UNPKG

@teikei/map

Version:

Teikei map SPA component. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.

28 lines (24 loc) 703 B
import React from 'react' import PropTypes from 'prop-types' import { Link } from 'react-router' import { EDIT_USER_ACCOUNT } from '../../../AppRouter' const UserInfo = ({ user }) => ( <fieldset className="entries-editor-user-info"> <legend>Kontaktdaten</legend> <label htmlFor="contact-data">Deine Kontakt-Email-Adresse:</label> {user.email} <p className="entries-editor-explanation"> <Link target="_blank" to={EDIT_USER_ACCOUNT}> Kontaktdaten ändern </Link> </p> </fieldset> ) UserInfo.propTypes = { user: PropTypes.shape({ name: PropTypes.string, email: PropTypes.string, phone: PropTypes.string }).isRequired } export default UserInfo