Skip to content

Instantly share code, notes, and snippets.

@samihult
Last active December 28, 2020 10:10
Show Gist options
  • Select an option

  • Save samihult/5ed20856d14030806e4bc3d06748765a to your computer and use it in GitHub Desktop.

Select an option

Save samihult/5ed20856d14030806e4bc3d06748765a to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'field',
type: 'parallel',
states: {
value: {
initial: 'empty',
states: {
empty: {},
'not empty': {}
}
},
phase: {
initial: 'untouched',
states: {
untouched: {},
dirty: {}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment