|
|
|
|
|
by ty___ler
3036 days ago
|
|
I’m pretty excited to see how the api could interop with some new native features of js, like for ex async class functions are now possible and I bet a setup like this could remove a lot of IO overhead in the future class Test {
async render() {}
}
Kind of hard to come up with a concrete use-case with how little we know about the new features. Still super interesting though! |
|
There is a way to do this kind of things with current React version (16.2): https://github.com/alexeyraspopov/react-coroutine
You can use generators, async functions, and even more, async generators. Worth checking examples in the repo.