Skip to content

Instantly share code, notes, and snippets.

View georgefeast's full-sized avatar

George Feast-Parker georgefeast

View GitHub Profile
@georgefeast
georgefeast / machine.js
Created April 18, 2020 22:33
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@georgefeast
georgefeast / machine.js
Last active December 2, 2019 03:46
Generated by XState Viz: https://xstate.js.org/viz
const setProgressTo = p => assign({
progress: () => p,
})
const fetchMachine = Machine({
id: 'fetch',
context: {
numberShares: 0,
progress: 0
},