xtuc/async-reactor

Add a way to invalidate the component and rerun effects

Open

#26 opened on Jul 2, 2018

 (0 comments) (2 reactions) (0 assignees)JavaScript (27 forks)github user discovery
beginner-friendlyhelp wanted

Repository metrics

Stars
 (443 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

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.

Contributor guide