Skip to content

Instantly share code, notes, and snippets.

View martypenner's full-sized avatar
😎
Building cool things

Marty Penner martypenner

😎
Building cool things
View GitHub Profile
@martypenner
martypenner / machine.js
Last active March 19, 2020 21:27
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'backoffFetch',
context: {
status: 'green',
retryCount: 0,
},
type: 'parallel',
states: {
health: {
initial: 'healthy',