aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/confirm-add-token/token-balance/token-balance.component.js
blob: 976788d4c099ff6030a4d915c12565a7b1a29419 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class TokenBalance extends Component {
  static propTypes = {
    string: PropTypes.string,
    symbol: PropTypes.string,
    error: PropTypes.string,
  }

  render () {
    return (
      <div className="hide-text-overflow">{ this.props.string }</div>
    )
  }
}