Skip to content

Instantly share code, notes, and snippets.

@sylvanaar
sylvanaar / machine.js
Last active January 9, 2021 13:26
Generated by XState Viz: https://xstate.js.org/viz
const token = Machine(
{
id: "token",
initial: "idle",
context: {
data: null,
expired: true,
online: false,
loaded: false,
},
@sylvanaar
sylvanaar / machine.js
Created February 25, 2021 11:33
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)