Is it safe to call `RComponent.setState` (from the...
# javascript
s
Is it safe to call
RComponent.setState
(from the Kotlin react wrappers) from a coroutine? I haven't seen any examples of react/coroutine integration.
👌 1
b
i'd assume so, as setState itself is async
s
Thank you!