You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/views/Wallet/views/Bootloader/index.js

33 lines
660 B

import React from 'react';
import styled from 'styled-components';
import { H2 } from 'components/Heading';
import { connect } from 'react-redux';
const Wrapper = styled.div`
display: flex;
flex-direction: column;
`;
const Row = styled.div`
display: flex;
flex-direction: column;
align-items: center;
padding: 100px 48px;
`;
const P = styled.p`
padding: 10px 0px;
text-align: center;
`;
const Bootloader = () => (
<Wrapper>
<Row>
<H2>Your device is in firmware update mode</H2>
<P>Please re-connect it</P>
</Row>
</Wrapper>
);
export default connect(null, null)(Bootloader);