2018-02-20 09:30:36 +00:00
|
|
|
/* @flow */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
2018-04-11 10:06:46 +00:00
|
|
|
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 (
|
2018-05-22 16:07:42 +00:00
|
|
|
<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);
|