Skip to content

Instantly share code, notes, and snippets.

@SandroMaglione
Created July 4, 2024 12:41
Show Gist options
  • Save SandroMaglione/bbe1a6878f5fd92d6b87b59911c8550c to your computer and use it in GitHub Desktop.
Save SandroMaglione/bbe1a6878f5fd92d6b87b59911c8550c to your computer and use it in GitHub Desktop.
VSCode snippet to scaffold the code for a generic state machine with `xstate`
{
"state machine": {
"prefix": "machine",
"description": "Create scaffold for state machine",
"body": [
"import { setup } from \"xstate\";",
"",
"export const machine = setup({}).createMachine({",
" id: \"$0\",",
" initial: \"Idle\",",
" states: {",
" Idle: {},",
" },",
"});",
]
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment