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

10 lines
224 B
JavaScript
Raw Normal View History

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) => ({
balance: selectBalance(state),
});
2021-03-10 07:06:59 +01:00
export default connect(select, {})(Wallet);