import { connect } from 'react-redux';
import ReceivePage from './view';

const select = (state) => ({});

export default connect(select, {})(ReceivePage);