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

Fixed name in component

This commit is contained in:
Vladimir Volek 2018-12-10 17:24:47 +01:00 committed by Szymon Lesisz
parent 1bfe5887d0
commit 461865de1c

View File

@ -44,7 +44,7 @@ const Img = styled.img`
padding-bottom: 20px; padding-bottom: 20px;
`; `;
const StellarWallet = (props: Props) => ( const CardanoWallet = (props: Props) => (
<Wrapper> <Wrapper>
<StyledLink onClick={props.onCancel}> <StyledLink onClick={props.onCancel}>
<Icon <Icon
@ -63,8 +63,8 @@ const StellarWallet = (props: Props) => (
</Wrapper> </Wrapper>
); );
StellarWallet.propTypes = { CardanoWallet.propTypes = {
onCancel: PropTypes.func.isRequired, onCancel: PropTypes.func.isRequired,
}; };
export default StellarWallet; export default CardanoWallet;