2020-08-26 19:19:03 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { selectBalance } from 'lbry-redux';
|
|
|
|
import Wallet from './view';
|
|
|
|
|
2021-03-10 07:06:59 +01:00
|
|
|
const select = (state) => ({
|
2020-08-26 19:19:03 +02:00
|
|
|
balance: selectBalance(state),
|
|
|
|
});
|
|
|
|
|
2021-03-10 07:06:59 +01:00
|
|
|
export default connect(select, {})(Wallet);
|