Skip to content

Instantly share code, notes, and snippets.

View conorhastings's full-sized avatar
🏄‍♂️
9-5, just to make a living

Conor Hastings conorhastings

🏄‍♂️
9-5, just to make a living
View GitHub Profile
This file has been truncated, but you can view the full file.
[
{
"name": "les Escaldes",
"country": "Andorra",
"subcountry": "Escaldes-Engordany",
"geocode": "3040051"
},
{
"name": "Andorra la Vella",
"country": "Andorra",
@conorhastings
conorhastings / machine.js
Last active April 8, 2021 17:39
Generated by XState Viz: https://xstate.js.org/viz
const UserMachine = () => {};
Machine(
{
id: 'Get UserI',
initial: 'idle',
context: {
user: null,
retries: 0,
maxRetries: 3,
},
@conorhastings
conorhastings / machine.js
Last active April 9, 2021 17:28
Generated by XState Viz: https://xstate.js.org/viz
const PIN = 1234;
const pinMachine = Machine({
id: "wizard",
context: {
phone: "",
pin: "",
retries: 0
},
initial: "phone",
states: {