Possible to map of `useSubmissions` result?
useSubmissions outside of a rendered <For> component.
In the linked code: https://github.com/JacobSNGoodwin/scavenge-solid/blob/main/src/components/HuntItemsList.tsx#L43, I was trying to basically create a list of items where I optimistically filtered out any items being deleted and optimistically added any being added, while also sorting them.
I was able to get the ids of submissions being deleted in a good old fashioned for loop, but we cannot map over the Proxied array (which may be fine and desirable). ...Help Me Understand SolidStart vs. Next.js Caching
Understanding Solid Reactivity Lint Error
The reactive variable 'handleContextMenuCommand' should be used within JSX, a tracked scope (like createEffect), or inside an event handler function, or else changes will be ignored solid/reactivity
The reactive variable 'handleContextMenuCommand' should be used within JSX, a tracked scope (like createEffect), or inside an event handler function, or else changes will be ignored solid/reactivity
Example in solid-testing-library example not working
can render a route with the id test in the solid-testing-library https://github.com/solidjs/solid-testing-library/blob/main/src/__tests__/routes.tsx does not work for me.
I get that:
FAIL src/test/pages/Drone-view.test.tsx > location option > can render a route with the id
TestingLibraryElementError: Unable to find an element with the text: Id: 1234. This could be because the text is broken up by multiple elements. In this case, you can provide a function for your text matcher to make your matcher more flexible.
FAIL src/test/pages/Drone-view.test.tsx > location option > can render a route with the id
TestingLibraryElementError: Unable to find an element with the text: Id: 1234. This could be because the text is broken up by multiple elements. In this case, you can provide a function for your text matcher to make your matcher more flexible.
"<A> and 'use' router primitives can be only used inside a Route." When testing component in router

Failed to execute 'replaceChild' on 'Node': The node to be replaced is not a child of this node.
export const [mainStore, setMainStore] = createStore<StoreType>({ countries: undefined });
export const [mainStore, setMainStore] = createStore<StoreType>({ countries: undefined });
Set default location state
Why does adding a new field duplicate the value?

Does SolidStart have a function like basePath of nextjs?
Dependency configuration in Astro
solid-bootstrap as a dependency in an Astro + Solid project. This results in the solid export flag being turned on, so solid-bootstrap exports dist/esm/index.jsx by default. Then I get the error Could not import ./Accordion, I guess because .jsx isn't getting resolved as a default extension.
I feel like this is probably standard... Is there some Vite configuration I should add? I tried
```json
vite: {...How do I postpone invocation of fetcher function of the solid-js resource?
const [pipeline] = createResource(() => api.pipeline(params.id)) const [mappings] = createResource(() => api.pipelineMappings(params.id), { deferStream: true }) ...
how to edit html attribute?
How to deploy SolidStart project to Cloud (AWS/GCP etc.)
.output...

Resource loading from param blocks navigation
Is it bad to have A LOT of `createEffect` in a single component ?
setX and getX for each property....How SolidStart SSR (& hydration) work?
Struggling with Router useParams() reactivity
how to deal with flashes of unstyled content
Storybook `children` not working as expected
children are handled in Storybook args.
The following works fine with React, but not Solid:
```tsx...