-
Notifications
You must be signed in to change notification settings - Fork 49.4k
Closed
Labels
Description
Feature
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
}
brigand