lbry-desktop/src/renderer/page/wallet/index.js

6 lines
148 B
JavaScript
Raw Normal View History

import React from 'react';
import { connect } from 'react-redux';
import WalletPage from './view';
2017-04-22 15:17:01 +02:00
2017-08-17 22:19:29 +02:00
export default connect(null, null)(WalletPage);