1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-16 11:38:19 +00:00
trezor-wallet/src/js/views/Wallet/views/Bootloader/index.js
2018-08-16 16:29:14 +02:00

18 lines
446 B
JavaScript

/* @flow */
import React from 'react';
import { H2 } from 'components/Heading';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
const Bootloader = () => (
<section className="device-settings">
<div className="row">
<H2>Your device is in firmware update mode</H2>
<p>Please re-connect it</p>
</div>
</section>
);
export default connect(null, null)(Bootloader);