| 1234567891011 |
- import React from 'react';
- import { connect } from 'react-redux';
- import { store } from '../../store/store';
- export function connectWithStore(WrappedComponent, ...args) {
- const ConnectedWrappedComponent = connect(...args)(WrappedComponent);
- return props => {
- return <ConnectedWrappedComponent {...props} store={store} />;
- };
- }
|