Skip to content

Instantly share code, notes, and snippets.

View ajayullal's full-sized avatar

Ajay Ullal ajayullal

  • Atlassian
  • Bengaluru, India
View GitHub Profile
@ajayullal
ajayullal / machine.js
Last active January 27, 2021 13:51
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@ajayullal
ajayullal / machine.js
Last active January 27, 2021 18:30
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'Create SSL Quote',
initial: 'Home',
states: {
Home: {
on: {
'Create SSL Quote Button Click': 'Opportunities'
}
},
Opportunities: {