30977cae96
Doesn't affect functionality, but shows confusing result in text search.
9 lines
250 B
JavaScript
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);
|