Skip to content

Instantly share code, notes, and snippets.

@robertvorthman
robertvorthman / machine.js
Last active November 21, 2020 14:52
Generated by XState Viz: https://xstate.js.org/viz
const positionMachine = Machine({
id: 'position',
initial: 'open',
context: {
selectedCandidateId: 0
},
states: {
open: {
on: {
selectCandidate: 'selected'