Jack Mallers
8 years ago
8 changed files with 51 additions and 13 deletions
@ -0,0 +1,16 @@ |
|||
// @flow
|
|||
import React, { Component } from 'react' |
|||
import styles from './Wallet.scss' |
|||
|
|||
class Wallet extends Component { |
|||
render() { |
|||
return ( |
|||
<div> |
|||
Wallet |
|||
</div> |
|||
) |
|||
} |
|||
} |
|||
|
|||
|
|||
export default Wallet |
@ -0,0 +1,8 @@ |
|||
import { connect } from 'react-redux' |
|||
import Wallet from '../components/Wallet' |
|||
|
|||
const mapDispatchToProps = {} |
|||
|
|||
const mapStateToProps = (state) => ({}) |
|||
|
|||
export default connect(mapStateToProps, mapDispatchToProps)(Wallet) |
@ -0,0 +1,3 @@ |
|||
import WalletContainer from './containers/WalletContainer' |
|||
|
|||
export default WalletContainer |
Loading…
Reference in new issue