We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Stev,
In the tip box of this link, there's a Sandbox example where it has the following lines which are not correct:
I suggest replacing them with the following lines so the example would work:
P.S. I would like to thank you so much for your packages and for your creativity <3
The text was updated successfully, but these errors were encountered: