lbry-desktop/src/renderer/component/walletBalance/index.js
2018-04-18 00:13:00 -04:00

9 lines
238 B
JavaScript

import { connect } from 'react-redux';
import { selectBalance } from 'lbry-redux';
import WalletBalance from './view';
const select = state => ({
balance: selectBalance(state),
});
export default connect(select, null)(WalletBalance);