lbry-desktop/src/ui/component/walletBalance/index.js

13 lines
244 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
2018-04-18 06:03:01 +02:00
import { selectBalance } from 'lbry-redux';
import WalletBalance from './view';
2017-08-17 22:19:29 +02:00
const select = state => ({
balance: selectBalance(state),
});
export default connect(
select,
null
)(WalletBalance);