lbry-android/app/src/component/floatingWalletBalance/index.js
Akinwale Ariwodola 94f9ad6cc4
display floating wallet balance (#252)
* display floating wallet balance
2018-08-24 11:10:30 +01:00

9 lines
254 B
JavaScript

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