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

11 lines
277 B
JavaScript
Raw Normal View History

2017-08-17 16:19:29 -04:00
import React from "react";
import { connect } from "react-redux";
2017-11-13 16:02:23 -05:00
import { selectBalance } from "redux/selectors/wallet";
2017-08-17 16:19:29 -04:00
import WalletBalance from "./view";
const select = state => ({
balance: selectBalance(state),
});
2017-08-20 17:42:00 -04:00
export default connect(select, null)(WalletBalance);