1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +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 // and put it inside config/variables.js
const SmallScreenWidth = '850px'; const SmallScreenWidth = '850px';
const Wrapper = styled.section``;
const AmountInputLabelWrapper = styled.div` const AmountInputLabelWrapper = styled.div`
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -249,7 +247,7 @@ const AccountSend = (props: Props) => {
return ( return (
<Content> <Content>
<Wrapper> <React.Fragment>
<H2>Send Ethereum or tokens</H2> <H2>Send Ethereum or tokens</H2>
<InputRow> <InputRow>
<Input <Input
@ -397,7 +395,7 @@ const AccountSend = (props: Props) => {
network={network} network={network}
/> />
)} )}
</Wrapper> </React.Fragment>
</Content> </Content>
); );
}; };