lbry-desktop/ui/js/page/wallet/index.js

13 lines
357 B
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import { connect } from "react-redux";
import { selectCurrentPage } from "selectors/app";
import { selectBalance } from "selectors/wallet";
import WalletPage from "./view";
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
const select = state => ({
2017-04-22 15:17:01 +02:00
currentPage: selectCurrentPage(state),
2017-06-06 23:19:12 +02:00
balance: selectBalance(state),
2017-06-06 06:21:55 +02:00
});
2017-04-22 15:17:01 +02:00
2017-06-06 06:21:55 +02:00
export default connect(select, null)(WalletPage);