1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-05 23:59:23 +00:00

AccountSend remove unused Wrapper

This commit is contained in:
Szymon Lesisz 2018-10-03 18:45:31 +02:00
parent 08c879fedf
commit 200c0ea4cf

View File

@ -23,8 +23,6 @@ import type { Props } from './Container';
// and put it inside config/variables.js
const SmallScreenWidth = '850px';
const Wrapper = styled.section``;
const AmountInputLabelWrapper = styled.div`
display: flex;
justify-content: space-between;
@ -249,7 +247,7 @@ const AccountSend = (props: Props) => {
return (
<Content>
<Wrapper>
<React.Fragment>
<H2>Send Ethereum or tokens</H2>
<InputRow>
<Input
@ -397,7 +395,7 @@ const AccountSend = (props: Props) => {
network={network}
/>
)}
</Wrapper>
</React.Fragment>
</Content>
);
};