open-consul/ui/packages/consul-ui/app/machines/boolean.xstate.js

35 lines
482 B
JavaScript
Raw Normal View History

2022-02-08 19:24:50 +00:00
export default {
id: 'boolean',
initial: 'false',
states: {
true: {
on: {
TOGGLE: [
{
target: 'false',
},
],
FALSE: [
{
target: 'false',
},
],
},
},
false: {
on: {
TOGGLE: [
{
target: 'true',
},
],
TRUE: [
{
target: 'true',
},
],
},
},
},
};