mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-03 21:32:34 +00:00
20 lines
415 B
JavaScript
20 lines
415 B
JavaScript
/* @flow */
|
|
'use strict';
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import { connect } from 'react-redux';
|
|
|
|
import Settings from '../components/wallet/Settings';
|
|
|
|
function mapStateToProps(state, own) {
|
|
return {
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return {
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Settings); |