Closed
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
}