Rachid Daoudi
Results
2
comments of
Rachid Daoudi
Here is an easy fix to this issue: ```js import { hookstate, useHookstate } from "@hookstate/core"; import { useEffect } from "react"; const defaultState = { count: 0, }; const...
The crash occurs when you pass a hookstate to another hookstate as defaultValue, to avoid this you can create a "copycat" state and grab the real state value using noproxy:...