1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-05 22:32:33 +00:00
trezor-wallet/src/js/components/wallet/WalletSettings.js
2018-04-16 23:19:50 +02:00

17 lines
337 B
JavaScript

/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
export const WalletSettings = () => {
return (
<section className="settings">
Wallet settings
</section>
);
}
export default connect(null, null)(WalletSettings);