lbry-react-native/src/component/walletBalance/index.js
Akinwale Ariwodola e3f66e4fa6 initial commit
2019-07-09 01:54:32 +01:00

12 lines
244 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);