Skip to content

Instantly share code, notes, and snippets.

View the-main-thing's full-sized avatar

Pavel Shevtsov the-main-thing

View GitHub Profile
@the-main-thing
the-main-thing / machine.js
Last active February 13, 2020 11:58
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@the-main-thing
the-main-thing / machine.js
Last active February 10, 2020 09:54
Generated by XState Viz: https://xstate.js.org/viz
const machineId = 'dataBoard';
const initialValues = {}
const dataTableMachine = Machine(
{
id: machineId,
initial: 'idle',
context: {
key: null,
editingIndex: null,
@the-main-thing
the-main-thing / machine.js
Created February 3, 2020 13:02
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions