Solidstart Astro or Vite
sibling components
testing createRouteAction$ using vitest
createResource returns undefined
(console.log(data())). I tested to see that this wasn't an issue in my API by logging the response in the fetcher function and everything was as expected. The strangest thing is that I can normally render the result of this resource even though it is undefined.
const [data] = createResource(getGames);
<For each={data()}>{game => (<Game {...game}/>)}</For>
const [data] = createResource(getGames);
<For each={data()}>{game => (<Game {...game}/>)}</For>
Suspense doesn't seem to work with ContextProvider
createResource(fetch) and then put <Suspense fallback={<Placeholder>}> I will see the placeholder during loading.
But if I have createResource(fetch) inside a ContextProvider, i.e.:
```jsx...Layout for layout group

SVG A elements not created correctly
How to add events for scrolling like React? (with solid-qurey)
createResource offers powerful features, but I'm using a solid-query library that I'm more familiar with to handle async.
I'm trying to implement infinite scrolls, but I've tried createRenderEffect and on but I'm not sure what event happens when scrolls reach a certain location as I think....What's the best way to create multiple layouts that only some routes use?
How to stop VS Code from erroring with `Cannot find name 'React'.ts(2304)`?
Cannot find name 'React'.ts(2304) but I am not using React at all. I have both of these in my ts config:
"jsx": "preserve",
"jsxImportSource": "solid-js",
"jsx": "preserve",
"jsxImportSource": "solid-js",
How should I use createRouteData
``
export function routeData({ params, location }: RouteDataArgs) {
return createServerData$(
async ([slug, page]) => {
const response = await fetch(/api/list`, {...
How can I access a store from the parent context from inside of a nested context?
Using `createResource` without triggering suspense
createResource without triggering Suspense. I realised that data.latest still triggers suspense on first fetch, but providing an initialValue to the resource seems to prevent this.
Is this reliable behaviour to rely on?
https://playground.solidjs.com/anonymous/25b3cb5c-54b4-4be5-85c1-531ddf2e369c...`<A>` from `solid-start` is slow on Android. How to debug performance?
Warning on a reactive variable using TSX

store values do not update

How to add derived values in store after creation
createMemo (https://www.solidjs.com/docs/latest#getters), but once the store is created.
I know it's possible with createEffect to call setStore to update a part of the store in reaction to another part of the store, but it's not ideal:
it's best to avoid setting signals in effects, which without care can cause additional rendering or even infinite effect loops...
Transition state getting lost after an await inside ResourceFetcher
Issue with multiple useTransition
Trouble porting a React hook to Solid