1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-30 20:28:09 +00:00

wallet settings page

This commit is contained in:
Szymon Lesisz 2018-10-15 10:47:17 +02:00
parent 651242ffcf
commit 5ea4ae5772

View File

@ -1,15 +1,46 @@
import styled from 'styled-components'; import styled from 'styled-components';
import React from 'react'; import React from 'react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import Content from 'views/Wallet/components/Content';
const Wrapper = styled.div``; import colors from 'config/colors';
import icons from 'config/icons';
import Content from 'views/Wallet/components/Content';
import { H2 } from 'components/Heading';
import Icon from 'components/Icon';
import Link from 'components/Link';
import Button from 'components/Button';
const Section = styled.section`
display: flex;
justify-content: center;
align-items: center;
height: 100%;
`;
const Row = styled.div`
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
`;
const WalletSettings = () => ( const WalletSettings = () => (
<Content> <Content>
<Wrapper> <Section>
Wallet settings <Row>
</Wrapper> <Icon
size={60}
color={colors.WARNING_PRIMARY}
icon={icons.WARNING}
/>
<H2>Wallet settings is under construction</H2>
<Link to="/">
<Button>Take me back</Button>
</Link>
</Row>
</Section>
</Content> </Content>
); );