Loading data into context
createServerData$ but seems like only if I call the getter function inside the JSX Element, then the fetcher will work, other wise it won't, the data.state is just pending, won't beready...Listening to all changes in an array or object in a store
Problem creating web component with solid-element
Confusion around solid-query
solid-query/react-query,
when writing a useAuth hook, how would you go about fetching and storing the initial session?
```typescript...[solved] DB change not being reactive?
createResource reactive? I have one and when I changed the value in the db the fetcher didn't respond. Or is reactivity just within the code base interactivity? Or should I be using createMemo
So, I tried createMemo together with createEffect but that doesn't seem to be working either. My initial try was with createResource
Thoughts?...
How to add child to parent component outside of parent?

Transform property on all elements
Context store issue with array
[solved] createEffect signal is Undefined
user is not updating (the output near Profile). The signal does get populated. Clues? Tutorial link with real-world example?
Thanks....
Hydration fails with start-cloudflare-pages
data-hk attributes in the SSR-generated page have a single number (e.g. data-hk="1", data-hk="2", ..., data-hk="88"), unlike the dev mode ssr where I get an hierarchical value such as 0-0-0-0-0-0-0-0-0-1-0-0-0-0-0-0-0-2-0-1-1-4-0-1-1-4-0-1-0-1-0 ).
Seems like start-cloudflare-pages is unable to track the hierarchy while rendering the SSR page. Any pointers how to further debug this?...client-side solid-router prepends every relative link with hash, even when not desired
Passing signal from one template's function to a different template function
createSignal() in header.jsx how can I use that value in footer.jsx
Any pointers would be appreciated....Monorepo error with SolidStart `__vite_ssr_import_0__.template is not a function`
undefined context for dynamically added component
success method via context. Users can pass in any components as the first param of the success method to be displayed inside a toast.
Users can use ToastBody as the first param, which will contain a close button. The close button will close the toast via onClose method exposed in the context.
...Do we have an ExtractProps helper?
Property 'pathLength' does not exist on type 'CircleSVGAttributes<SVGCircleElement>'
pathLength property but I get the TS error above, not sure if the property is missing in the types or what
```
<circle
cx="50"...Events (oninput on keyup) stopped working?
import { createSignal } from "solid-js";export default function FormExample() { const [value, setValue] = createSignal(""); function handleInput(e: Event) { console.log("WTF"); const target = e.target as HTMLInputElement; setValue(target.value); } return ( <div> <div> The value is {value()}</div> <input type="text" oninput={handleInput} /> </div> );}
import { createSignal } from "solid-js";export default function FormExample() { const [value, setValue] = createSignal(""); function handleInput(e: Event) { console.log("WTF"); const target = e.target as HTMLInputElement; setValue(target.value); } return ( <div> <div> The value is {value()}</div> <input type="text" oninput={handleInput} /> </div> );}
How to add calculated getter in a existing store?
const [store, setStore] = createStore({firstName: "Foo", lastName: "Bar"})using createResource on node
filesystem primitive that abstracts different file systems (virtual on localStorage, typescript-vfs, web filesystem api, web filesystem access api, node, tauri); synchronous file systems return signals on read access, whereas asynchronous file systems are supposed to return resources. Unfortunately, I get an error on node with asynchronous file systems; sharedContext is not defined. Is that correct?