71 lines
2.9 KiB
TypeScript
71 lines
2.9 KiB
TypeScript
import { colors } from '@0xproject/react-shared';
|
|
import * as React from 'react';
|
|
import { Container } from 'ts/components/ui/container';
|
|
import { IconButton } from 'ts/components/ui/icon_button';
|
|
import { Text } from 'ts/components/ui/text';
|
|
|
|
export interface WrapEthOnboardingStep1Props {}
|
|
|
|
export const WrapEthOnboardingStep1: React.StatelessComponent<WrapEthOnboardingStep1Props> = () => (
|
|
<div className="flex items-center flex-column">
|
|
<Text>
|
|
You need to convert some of your ETH into tradeable <b>Wrapped ETH (WETH)</b>.
|
|
</Text>
|
|
<Container width="100%" marginTop="25px" marginBottom="15px" className="flex justify-center">
|
|
<div className="flex flex-column items-center">
|
|
<Text fontWeight={700}> 1 ETH </Text>
|
|
<img src="/images/eth_dollar.svg" height="75px" width="75x" />
|
|
</div>
|
|
<Container marginRight="25px" marginLeft="25px" position="relative" top="20px">
|
|
<Text fontSize="36px">=</Text>
|
|
</Container>
|
|
<div className="flex flex-column items-center">
|
|
<Text fontWeight={700}> 1 WETH </Text>
|
|
<img src="/images/eth_token_erc20.svg" height="75px" width="75px" />
|
|
</div>
|
|
</Container>
|
|
<Text>
|
|
Think of it like the coin version of a paper note. It has the same value, but some machines only take coins.
|
|
</Text>
|
|
<Text>
|
|
Click
|
|
<Container display="inline-block" marginLeft="10px" marginRight="10px">
|
|
<IconButton
|
|
iconName="zmdi-long-arrow-down"
|
|
color={colors.mediumBlue}
|
|
labelText="wrap"
|
|
display="inline-flex"
|
|
/>
|
|
</Container>
|
|
to wrap your ETH.
|
|
</Text>
|
|
</div>
|
|
);
|
|
|
|
export interface WrapEthOnboardingStep2Props {
|
|
formattedEthBalance: string;
|
|
}
|
|
|
|
export const WrapEthOnboardingStep2: React.StatelessComponent<WrapEthOnboardingStep2Props> = ({
|
|
formattedEthBalance,
|
|
}) => (
|
|
<div className="flex items-center flex-column">
|
|
<Text>You currently have {formattedEthBalance} in your wallet.</Text>
|
|
<Container width="100%" marginTop="25px" marginBottom="15px" className="flex justify-center">
|
|
<div className="flex flex-column items-center">
|
|
<Text fontWeight={700}> 1 ETH </Text>
|
|
<img src="/images/eth_dollar.svg" height="75px" width="75x" />
|
|
</div>
|
|
<Container marginRight="25px" marginLeft="25px" position="relative" top="20px">
|
|
<Text fontSize="25px">
|
|
<i className="zmdi zmdi-long-arrow-right" />
|
|
</Text>
|
|
</Container>
|
|
<div className="flex flex-column items-center">
|
|
<Text fontWeight={700}> 1 WETH </Text>
|
|
<img src="/images/eth_token_erc20.svg" height="75px" width="75px" />
|
|
</div>
|
|
</Container>
|
|
</div>
|
|
);
|