componentWillMount is a deprecated lifecycle method; componentDidMount should be used to kick off things like ajax. In the case of the _App hierarchy, a promise chain is used to perform initialization, and it is first started in the constructor by initializing storage. However, by the time storage is initialized, resolving the first promise, _App has already mounted. So, move it all to the componentDidMount lifecycle. |
||
---|---|---|
.. | ||
components | ||
actions.js | ||
functions.any.js | ||
functions.native.js | ||
functions.web.js | ||
getRouteToRender.js | ||
index.js | ||
middleware.js |