lbry-desktop/ui/component/yrblWalletEmpty/index.js

10 lines
250 B
JavaScript
Raw Normal View History

import { connect } from 'react-redux';
import { selectBalance } from 'redux/selectors/wallet';
import YrblWalletEmpty from './view';
2021-03-10 07:06:59 +01:00
const select = (state) => ({
balance: selectBalance(state),
});
export default connect(select)(YrblWalletEmpty);