We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c2c263 commit 1089573Copy full SHA for 1089573
src/React/Basic.js
@@ -117,12 +117,16 @@ exports.send_ = function(buildStateUpdate) {
117
};
118
119
exports.readProps = function(self) {
120
- return self.instance_.props.$$props;
+ return function() {
121
+ return self.instance_.props.$$props;
122
+ };
123
124
125
exports.readState = function(self) {
- var state = self.instance_.state;
- return state === null ? null : state.$$state;
126
127
+ var state = self.instance_.state;
128
+ return state === null ? null : state.$$state;
129
130
131
132
exports.make = function(_unionDict) {
0 commit comments