solid
solid copied to clipboard
Global state management in Solid using nanostores.
Link: https://github.com/nanostores/persistent/issues/49 ```jsx export default function () { const foo = useStore($foo); console.log(foo()) // correct console.log($foo.get()) // correct createEffect(() => { console.log(foo()) // correct on every increment }) return (...
I'm using SolidJS for the first time; to get familiar with it I'm recreating a simple template project I originally did using Svelte components in Astro. In doing so I...
### Describe the bug In SSR environments such as Astro + Solid, pre-rendered content does not re-render to show updated content from persistent storage engines. I understand that this package...
# Issue The scenario I am running into is that I have a computed that looks as follows: ```ts computed(tableStore, (tables) => { return tables.filter(table => table.status === TableStatuses.ACTIVE &&...
A `[accessor, setter]` pair would be useful for situations where solid components use both the accessor & setter. The `atom.set()` function could be setter but returning the `[accessor, setter]` pair...