This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "les Escaldes", | |
| "country": "Andorra", | |
| "subcountry": "Escaldes-Engordany", | |
| "geocode": "3040051" | |
| }, | |
| { | |
| "name": "Andorra la Vella", | |
| "country": "Andorra", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const UserMachine = () => {}; | |
| Machine( | |
| { | |
| id: 'Get UserI', | |
| initial: 'idle', | |
| context: { | |
| user: null, | |
| retries: 0, | |
| maxRetries: 3, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const PIN = 1234; | |
| const pinMachine = Machine({ | |
| id: "wizard", | |
| context: { | |
| phone: "", | |
| pin: "", | |
| retries: 0 | |
| }, | |
| initial: "phone", | |
| states: { |
OlderNewer