mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-15 11:08:18 +00:00
17 lines
606 B
JavaScript
17 lines
606 B
JavaScript
import React from 'react';
|
|
import { H2 } from '~/js/components/common/Heading';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
|
|
export const DeviceSettings = () => (
|
|
<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);
|