mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-12 11:28:56 +00:00
20 lines
462 B
JavaScript
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);
|