Enhances 's connect so that redux-rest-easy knows which URLs have been requested by which components. If you have been using before, all you need to do for redux-rest-easy to work is changing the import from
import { connect } from 'react-redux';
to
import { connect } from '@brigad/redux-rest-easy';
Arguments
(connectArgs): The same arguments as 's connect. See .
Returns
(component): A component, which will be exactly the same as it would have been if wrapped in 's connect. See .
Example
This example demonstrates how to use connect to wrap a simple component.