import { connect } from 'react-redux' import Wallet from '../components/Wallet' const mapDispatchToProps = {} const mapStateToProps = (state) => ({}) export default connect(mapStateToProps, mapDispatchToProps)(Wallet)