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

12 lines
190 B
JavaScript
Raw Normal View History

2019-06-17 22:32:38 +02:00
import { connect } from 'react-redux';
import Wallet from './view';
const select = state => ({});
const perform = dispatch => ({});
export default connect(
select,
perform
)(Wallet);