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
Return all contextProps available via a wildcard prop, this would be helpful for those who want to do shouldComponentUpdate comparisons with props, state, and context.
Possible solutions
static contextTypes = true;
// or
static contextTypes = /.*/;
// or
static contextTypes = {
__all: true
}