Skip to content

Instantly share code, notes, and snippets.

@chosa91
Created January 13, 2020 19:29
Show Gist options
  • Save chosa91/ec8ff4a3455e6352e3d9d25a0b87865e to your computer and use it in GitHub Desktop.
Save chosa91/ec8ff4a3455e6352e3d9d25a0b87865e to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'some-id',
initial: 'compact',
states: {
compact: {
on: {
PULL_UP: 'expanded',
PULL_DOWN: 'closed'
}
},
closed: {
type: 'final'
},
expanded: {
on: {
PULL_DOWN_HARD: 'closed',
PULL_DOWN_SOFT: 'compact',
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment