async-reactor
async-reactor copied to clipboard
Add a way to invalidate the component and rerun effects
For example:
async function C() {
const res = await fetch();
return res;
}
We want a way to rerun the fetch request, probably by rerendering the C component.