async-reactor icon indicating copy to clipboard operation
async-reactor copied to clipboard

Render async Stateless Functional Components in React

Results 7 async-reactor issues
Sort by recently updated
recently updated
newest added

Please add a module declarations file for easier indexing in TypeScript. Thank you

Is it possible to load node modules asynchronously using `async-reactor`. The following snippet does not work but I hope explains the use case: ```jsx import React from 'react' import {...

For example: ```js async function C() { const res = await fetch(); return res; } ``` We want a way to rerun the fetch request, probably by rerendering the C...

help wanted
beginner-friendly

Let say I have to screens in my application. Each screen requires some own data to be loaded before it's displayed – the task `async-reactor` is made for. Now, I'm...

When going to another page using `this.props.history.push`, I can't seem to use this with a `protected route` stateless component which restricts the access of a page to a view when...

Basic async-reactor example for: - [x] React - [ ] Preact - [ ] Inferno and: - [ ] How to handle failures in component

enhancement
beginner-friendly

This is just informative "issue" with React Native examples and instructions that can be used in documentation/readme later. If you are new to React Native, first follow this guideline from...

beginner-friendly