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

7 lines
156 B
JavaScript
Raw Normal View History

2021-03-10 07:06:59 +01:00
import { connect } from 'react-redux';
import ReceivePage from './view';
const select = (state) => ({});
export default connect(select, {})(ReceivePage);