Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using wrong method name in a Sandbox example #40

Open
Marwa-Da opened this issue Dec 29, 2022 · 0 comments
Open

Using wrong method name in a Sandbox example #40

Marwa-Da opened this issue Dec 29, 2022 · 0 comments

Comments

@Marwa-Da
Copy link

Hi Stev,

In the tip box of this link, there's a Sandbox example where it has the following lines which are not correct:

import { createStateDesigner, useStateDesigner } from "@state-designer/react"

// [1]
const counter = createStateDesigner({
	data: { count: 0 },
	on: { CLICKED: data => data.count++ },
})

I suggest replacing them with the following lines so the example would work:

import {  useStateDesigner } from "@state-designer/react"
import { createState } from "@state-designer/core"
// [1]
const counter = createState({
	data: { count: 0 },
	on: { CLICKED: data => data.count++ },
})

P.S. I would like to thank you so much for your packages and for your creativity <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant