(Context)
| 102 | const CountContext = React.createContext(0); |
| 103 | |
| 104 | function readContext(Context) { |
| 105 | const dispatcher = |
| 106 | React |
| 107 | .__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE |
| 108 | .H; |
| 109 | return dispatcher.readContext(Context); |
| 110 | } |
| 111 | |
| 112 | function Counter(props) { |
| 113 | const count = readContext(CountContext); |