mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-01 20:32:37 +00:00
21 lines
627 B
JavaScript
21 lines
627 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
|
|
export const DeviceSettings = () => {
|
|
return (
|
|
<section className="device-settings">
|
|
<div className="row">
|
|
<h2>Device settings is under construction</h2>
|
|
<p>Please use Bitcoin wallet interface to change your device settings</p>
|
|
<a className="button" href="https://wallet.trezor.io/">Take me to the Bitcoin wallet</a>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default connect(null, null)(DeviceSettings);
|