mirror of
https://github.com/trezor/trezor-wallet
synced 2025-03-10 21:56:05 +00:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
const Bootloader = (props: any): any => {
|
|
return (
|
|
<section className="acquire">
|
|
<h3>Bootloader mode</h3>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default Bootloader;
|