react-solid-state
react-solid-state copied to clipboard
Auto tracking state management for modern React
Since createStore is supported, but it looks like we can't iterate it under the react context, there is no 'For each' in here right?
It appears that `react-solid-state` doesn't support the new Renderer in React 18. Using the old render function with React 18 still works, but switching to the [new render function in...
TypeScript complains that createEffect should have 2 arguments. I believe the following should work without issue: ``` const [someSignalValue, setSomeSignalValue] = createSignal("foo"); createEffect(() => { console.log(someSignalValue()); // will log "foo"...