Created
May 6, 2021 17:28
-
-
Save guilherme-teodoro/460e887d3102396354741c8361fc9aa9 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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