You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 17, 2022. It is now read-only.
To enable custom renderers to resolve a component's data requirements asynchronously, react-quest currently expects the render to resolve componentWillMount(). This is not suitable as it breaks the react component contract. A better solution - one that the community seems to have converged on - is extending the component contract with a getInitialProps method.
To enable custom renderers to resolve a component's data requirements asynchronously, react-quest currently expects the render to resolve
componentWillMount()
. This is not suitable as it breaks the react component contract. A better solution - one that the community seems to have converged on - is extending the component contract with agetInitialProps
method.Related: FormidableLabs/rapscallion#51 (comment)
The text was updated successfully, but these errors were encountered: