Skip to content

Instantly share code, notes, and snippets.

View nzoelle24's full-sized avatar

Nicholas Zoelle nzoelle24

  • Kbrax, Inc
  • Phoenix, AZ
View GitHub Profile
@nzoelle24
nzoelle24 / machine.js
Created November 24, 2020 18:00
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'modalMachine',
initial: 'closed',
states: {
closed: {
on: {
OPEN: {
target: 'open'
}
}
@nzoelle24
nzoelle24 / machine.js
Created November 24, 2020 17:59
Generated by XState Viz: https://xstate.js.org/viz
const machine = Machine({
id: 'modalMachine',
initial: 'closed',
states: {
closed: {
on: {
OPEN: {
target: 'open'
}
}