Skip to content

Instantly share code, notes, and snippets.

@vin-e
Created April 29, 2021 08:30
Show Gist options
  • Save vin-e/09bc348c28e6459baa17e7184cbb889c to your computer and use it in GitHub Desktop.
Save vin-e/09bc348c28e6459baa17e7184cbb889c to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const windowMachine = Machine({
id: 'window',
initial: 'open',
context: {
},
states: {
open: {
initial: 'floating',
states: {
floating: {
on: {
MAXIMIZED: 'maximized'
}
},
maximized: {
on: {
FLOATING: 'floating'
}
}
},
on: {
MINIMIZED: '#window.minimized'
}
},
minimized: {
on: {
OPEN: 'open'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment