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