Skip to content

Instantly share code, notes, and snippets.

@NicholasBoll
Created August 13, 2020 05:30
Show Gist options
  • Save NicholasBoll/3d3005fddd18a65d165982263d458504 to your computer and use it in GitHub Desktop.
Save NicholasBoll/3d3005fddd18a65d165982263d458504 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const tooltipMachine = Machine({
id: "tooltip",
initial: "closed",
states: {
closing: { on: { CLOSE: "closed", OPEN: "opened" } },
closed: { on: { OPEN: "opened" } },
opened: { on: { CLOSING: "closing", CLOSE: "closed" } }
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment