Define Event That Does Internal Self Transition
states: {
counting: {
on: {
INCREMENT: {
actions: ['incrementCount'],
},
},
},
},states: {
counting: {
on: {
INCREMENT: {
internal: true,
actions: ['incrementCount'],
},
},
},
},Last updated