1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00
trezor-wallet/src/js/components/wallet/pages/Bootloader.js

20 lines
462 B
JavaScript
Raw Normal View History

2018-02-20 09:30:36 +00:00
/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
2018-02-20 09:30:36 +00:00
2018-04-16 21:19:50 +00:00
const Bootloader = () => {
2018-02-20 09:30:36 +00:00
return (
<section className="device-settings">
<div className="row">
<h2>Your device is in firmware update mode</h2>
<p>Please re-connect it</p>
</div>
2018-02-20 09:30:36 +00:00
</section>
);
}
2018-04-16 21:19:50 +00:00
export default connect(null, null)(Bootloader);