lbry-desktop/ui/component/yrblWalletEmpty/index.js
infinite-persistence 30977cae96
Fix component naming
Doesn't affect functionality, but shows confusing result in text search.
2022-05-05 17:02:08 +08:00

9 lines
250 B
JavaScript

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