Skip to content

Instantly share code, notes, and snippets.

@the-main-thing
Created June 3, 2020 10:28
Show Gist options
  • Save the-main-thing/06be0d2fad5036e05557afaf0668bf19 to your computer and use it in GitHub Desktop.
Save the-main-thing/06be0d2fad5036e05557afaf0668bf19 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const focusMachne = Machine({
initial: 'idle',
states: {
idle: {
on: {
FOCUS: {
target: 'focused',
}
}
},
focused: {
on: {
BLUR: {
target: 'blured'
}
}
},
blured: {
on: {
FOCUS: {
target: 'focused'
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment