import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; export default class SendRowErrorMessage extends Component { static propTypes = { errors: PropTypes.object, errorType: PropTypes.string, }; static contextTypes = { t: PropTypes.func, }; render() { const { errors, errorType } = this.props; const errorMessage = errors[errorType]; return errorMessage ? (
{this.context.t(errorMessage)}
) : null; } }