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

6 lines
148 B
JavaScript
Raw Normal View History

2017-06-06 17:19:12 -04:00
import React from "react";
import { connect } from "react-redux";
import WalletPage from "./view";
2017-04-22 20:17:01 +07:00
2017-08-17 16:19:29 -04:00
export default connect(null, null)(WalletPage);