Skip to content

Instantly share code, notes, and snippets.

@davidkpiano
Last active October 2, 2021 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidkpiano/31982e8b0eb113c7655039e7909419e4 to your computer and use it in GitHub Desktop.
Save davidkpiano/31982e8b0eb113c7655039e7909419e4 to your computer and use it in GitHub Desktop.
xstate query ideas
function Example() {
const [{ isLoading, error, data }] = useMachine(
createQuery('repoData', () => fetch('...').then((res) => res.json()))
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment