Skip to content

Instantly share code, notes, and snippets.

View hakankaraduman's full-sized avatar

Hakan hakankaraduman

View GitHub Profile
@hakankaraduman
hakankaraduman / machine.js
Last active June 4, 2021 13:00
Generated by XState Viz: https://xstate.js.org/viz
const fetchMachine = Machine({
id: 'login',
initial: 'discovering',
context: {
org: "",
gvc: "",
tasks: [],
initialUrl: "",
history: {},
isLoggedIn: false
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@hakankaraduman
hakankaraduman / xstateContext.js
Created December 10, 2020 15:26
xState context example
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)