1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-12 11:28:56 +00:00
trezor-wallet/src/js/components/wallet/pages/Bootloader.js
2018-05-22 18:07:42 +02:00

20 lines
462 B
JavaScript

/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
const Bootloader = () => {
return (
<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);