aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-row-wrapper/send-row-error-message/send-row-error-message.component.js
blob: 61bc7bab77ed3d6571e197e4d34d625a65d6b013 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import React, { Component } from 'react'
import PropTypes from 'prop-types'

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
        ? <div className="send-v2__error">{this.context.t(errorMessage)}</div>
        : null
    )
  }

}