mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-09 16:18:17 +00:00
28 lines
514 B
JavaScript
28 lines
514 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
|
|
export const WalletSettings = (props: any): any => {
|
|
return (
|
|
<section className="settings">
|
|
Wallet settings
|
|
</section>
|
|
);
|
|
}
|
|
|
|
const mapStateToProps = (state, own) => {
|
|
return {
|
|
|
|
};
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(WalletSettings);
|