1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-01 20:32:37 +00:00
trezor-wallet/src/js/components/wallet/pages/DeviceSettings.js
2018-05-22 18:07:42 +02:00

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);