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

Add a way to invalidate the component and rerun effects

Open xtuc opened this issue 7 years ago • 0 comments

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.

xtuc avatar Jul 02 '18 13:07 xtuc