ae2354a0e0
This reverts commit a6c413da5c
.
13 lines
443 B
JavaScript
13 lines
443 B
JavaScript
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router';
|
|
import StripeAccountConnection from './view';
|
|
import { selectUser } from 'redux/selectors/user';
|
|
|
|
// function that receives state parameter and returns object of functions that accept state
|
|
const select = (state) => ({
|
|
user: selectUser(state),
|
|
});
|
|
|
|
// const perform = (dispatch) => ({});
|
|
|
|
export default withRouter(connect(select)(StripeAccountConnection));
|