Skip to content

Commit ac4c57d

Browse files
author
Eric O'Connell
committed
Update asyncInput to work with modern React
1 parent c1de10d commit ac4c57d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

index.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ function asyncInput (ctor) {
2121
},
2222

2323
render: function () {
24-
return this.transferPropsTo(
25-
ctor({
24+
return React.createElement(
25+
ctor,
26+
React.__spread({}, this.props, {
2627
value: this.state.value,
27-
onChange: this.onChange,
28-
children: this.props.children
29-
})
28+
onChange: this.onChange
29+
}),
30+
this.props.children
3031
)
3132
}
3233
})

0 commit comments

Comments
 (0)