You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
723 B
28 lines
723 B
7 years ago
|
import React, { Component } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
|
||
|
export default class TokenListPlaceholder extends Component {
|
||
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
return (
|
||
|
<div className="token-list-placeholder">
|
||
|
<img src="images/tokensearch.svg" />
|
||
|
<div className="token-list-placeholder__text">
|
||
|
{ this.context.t('addAcquiredTokens') }
|
||
|
</div>
|
||
|
<a
|
||
|
className="token-list-placeholder__link"
|
||
6 years ago
|
href="https://metamask.zendesk.com/hc/en-us/articles/360015489031"
|
||
7 years ago
|
target="_blank"
|
||
|
rel="noopener noreferrer"
|
||
|
>
|
||
|
{ this.context.t('learnMore') }
|
||
|
</a>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
}
|