1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-15 19:18:21 +00:00
trezor-wallet/src/js/components/wallet/DeviceSettings.js
2018-05-09 13:11:38 +02:00

22 lines
644 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">
<h2>Device settings</h2>
<div className="row">
<h2>Device settings is under construction</h2>
<p>Please use old wallet to edit your device settings</p>
<a className="button" href="https://wallet.trezor.io/">Take me to the old wallet</a>
</div>
</section>
);
}
export default connect(null, null)(DeviceSettings);