Skip to content

Instantly share code, notes, and snippets.

View CodingDive's full-sized avatar
🎯
Focusing

Mikey Stengel CodingDive

🎯
Focusing
View GitHub Profile
@CodingDive
CodingDive / machine.js
Created December 16, 2019 20:47
Generated by XState Viz: https://xstate.js.org/viz
const thermostatMachine = Machine(
{
id: 'thermostat',
initial: 'inactive',
context: {
temperature: 20,
},
states: {
inactive: {
on: {
@CodingDive
CodingDive / machine.js
Last active December 17, 2019 15:57
Generated by XState Viz: https://xstate.js.org/viz
const thermostatMachine = Machine(
{
id: 'thermostat',
initial: 'inactive',
context: {
temperature: 20,
},
states: {
inactive: {
on: {
@CodingDive
CodingDive / machine.js
Last active December 20, 2019 00:48
Generated by XState Viz: https://xstate.js.org/viz
const catFetchMachine = Machine({
id: 'catFetch',
initial: 'idle',
context: {
errorMessage: undefined,
cats: [],
},
states: {
idle: {
on: {
@CodingDive
CodingDive / machine.js
Last active May 5, 2020 14:47
Generated by XState Viz: https://xstate.js.org/viz
const userHardinessZoneMachine = Machine({
id: 'userHardinessZone',
initial: 'idle',
states: {
idle: {
on: {
FETCH: 'loading'
}
},