Skip to content

Instantly share code, notes, and snippets.

@guilherme-teodoro
Created May 6, 2021 17:28
Show Gist options
  • Save guilherme-teodoro/460e887d3102396354741c8361fc9aa9 to your computer and use it in GitHub Desktop.
Save guilherme-teodoro/460e887d3102396354741c8361fc9aa9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const productCardMobileMachine = Machine({
id: 'productMobileCard',
initial: 'overview',
states: {
overview: {
on: {
CONTINUE: 'closed'
},
initial: 'detailClosed',
states: {
detailOpen: {
on: {
TOGGLE: 'detailClosed'
}
},
detailClosed: {
on: {
TOGGLE: 'detailOpen'
}
}
}
},
closed: {
on: {
TOGGLE: 'open'
}
},
open: {
on: {
TOGGLE: 'closed'
}
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment