rsnext/examples/with-xstate/machines/toggleMachine.js

15 lines
242 B
JavaScript
Raw Normal View History

import { Machine } from 'xstate'
export const toggleMachine = Machine({
id: 'toggle',
initial: 'inactive',
states: {
inactive: {
on: { TOGGLE: 'active' },
},
active: {
on: { TOGGLE: 'inactive' },
},
},
})