mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-12 17:48:11 +00:00
18 lines
453 B
JavaScript
18 lines
453 B
JavaScript
/* @flow */
|
|
|
|
import React from 'react';
|
|
import { H2 } from 'components/common/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);
|