show is rendering children when still falsy
Is there a way to use the <For> component with an array of inputs?
Issue with createMemo and createInfiniteScroll
Sort the data in createStore
Iterate Set with For?
sync with external data for use in web game
How does solid.js handle complex data structures when working with props
implementation detail: enableScheduling uses MessageChannel API?

Infinite scrolling solid-start
Solid.js Playground console doesn't support creating const / let variables
const or let variables. The regular browser console does. Is this a limitation of having it embedded in the playground, or a bug?
Sidenote: should there be a "Playground" support tag?...Non-return part of <For>'s callback only seems to run once?
createStore()) where it's a list of selected items. I tried to perform the checking logic to see if each "searched item" is part of the "selected items" list, and then do some styling + toggle logic on those items.
However, if I do that logic outside the return of <For>'s callback and in the body, then it seems to only run once on first load, and then never again. But it does work if I put it inside the returned JSX for each item instead (which unfortunately means I can't reuse the check-if-already-selected logic).
Anyone knows why this is so? It's probably some quirk with Solid that I'm not familiar with. I've done something similar in React and it does work, but it might be one of the big reactivity differences....createStore default value with anonymous function
How can I use SolidJS ref with typescript?
SolidStart SSR + CSR?
Behavior of "Portal" component
how to put the types to the context

__vite_ssr_import_1__.template is not a function
import { reporter, ValidationMessage } from '@felte/reporter-solid'
Obviously I'm using felt forms and it works fine until I add that import. I should also note that I'm using solidJS in astroJS islands. I did run npm i -S @felte/reporter-solid...<Show> with number | null
Show component to conditionally render a number that can possibly be null? Currently, if you do the following, the number won't be rendered if its value is zero.
```tsx
<Show when={nullableValue()}>
{(value) => <>{value()}</>}...Load unknown jsx component after building

