Skip to content

Instantly share code, notes, and snippets.

View mellson's full-sized avatar
🏡

Anders Bech Mellson mellson

🏡
View GitHub Profile
import { createMachine, actions } from "xstate";
const { raise } = actions;
// Demostrate `raise` action
const raiseActionDemo = createMachine({
id: 'Raise action demo',
initial: 'entry',
states: {
entry: {
on: {