lbry-desktop/ui/page/receive/index.js
2021-04-13 14:02:25 -04:00

7 lines
156 B
JavaScript

import { connect } from 'react-redux';
import ReceivePage from './view';
const select = (state) => ({});
export default connect(select, {})(ReceivePage);