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