I am using React-Redux to build an application.
To load the source data for the React smart component, I need to send a Redux action where data requests from the server will be executed.
I tried to submit the action in the constructor (ES6 implementation), componentWillMountand componenetDidMount. They all worked.
My question is:
Does the React Intelligent component have a recommended location for submitting the action?
Jane source
share