1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 12:56:01 +01:00
metamask-extension/ui/pages/import-token/token-list/token-list-placeholder/token-list-placeholder.component.js

30 lines
839 B
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import Button from '../../../../components/ui/button';
2018-05-20 08:04:19 +02:00
export default class TokenListPlaceholder extends Component {
static contextTypes = {
t: PropTypes.func,
};
2018-05-20 08:04:19 +02:00
2020-11-03 00:41:28 +01:00
render() {
2018-05-20 08:04:19 +02:00
return (
<div className="token-list-placeholder">
<img src="images/tokensearch.svg" alt="" width="65" height="58" />
2018-05-20 08:04:19 +02:00
<div className="token-list-placeholder__text">
2020-11-03 00:41:28 +01:00
{this.context.t('addAcquiredTokens')}
2018-05-20 08:04:19 +02:00
</div>
<Button
type="link"
2018-05-20 08:04:19 +02:00
className="token-list-placeholder__link"
2018-10-11 18:06:24 +02:00
href="https://metamask.zendesk.com/hc/en-us/articles/360015489031"
2018-05-20 08:04:19 +02:00
target="_blank"
rel="noopener noreferrer"
>
2020-11-03 00:41:28 +01:00
{this.context.t('learnMore')}
</Button>
2018-05-20 08:04:19 +02:00
</div>
);
2018-05-20 08:04:19 +02:00
}
}