1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-01 04:38:15 +00:00

Added link for NEM coin

This commit is contained in:
Vladimir Volek 2018-10-11 15:18:01 +02:00
parent 0de30758a8
commit bc6ff28fe9

View File

@ -3,15 +3,14 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import styled from 'styled-components'; import styled from 'styled-components';
import colors from 'config/colors'; import colors from 'config/colors';
import icons from 'config/icons'; import icons from 'config/icons';
import Icon from 'components/Icon'; import Icon from 'components/Icon';
import Link from 'components/Link'; import Link from 'components/Link';
import Button from 'components/Button'; import Button from 'components/Button';
import { H3, H4 } from 'components/Heading'; import { H3, H4 } from 'components/Heading';
import P from 'components/Paragraph'; import P from 'components/Paragraph';
import coins from 'constants/coins';
import NemImage from './images/nem-download.png'; import NemImage from './images/nem-download.png';
import type { Props as BaseProps } from '../../Container'; import type { Props as BaseProps } from '../../Container';
@ -56,7 +55,9 @@ const NemWallet = (props: Props) => (
<P isSmaller>We have partnered up with the NEM Foundation to provide you with a full-fledged NEM Wallet.</P> <P isSmaller>We have partnered up with the NEM Foundation to provide you with a full-fledged NEM Wallet.</P>
<H4>Make sure you download the Universal Client for TREZOR support.</H4> <H4>Make sure you download the Universal Client for TREZOR support.</H4>
<Img src={NemImage} /> <Img src={NemImage} />
<StyledButton>Go to nem.io</StyledButton> <Link href={coins.find(i => i.id === 'xem').url}>
<StyledButton>Go to nem.io</StyledButton>
</Link>
</Wrapper> </Wrapper>
); );