Best practice working with reactive values inside context provider
a={a()} to Child, and access props.a - a is reactive.
If I wrap the context value in a function and treat context as Accessor<OriginalContextValue> - it's reactive.
If I use a store it's reactive too (but the update needs to be done differently)....Trigger same API call with different payloads in parallel using CreateResource
export const TriggerAPI = () => {
const [dummy] = createResource(getPayload, fetcher);
return dummy;
};...esm.sh & router
Subscribe to
feedback
const [store, setStore] = createStore({fb: [0,1,2]});
const feedback = store.fb;
const [store, setStore] = createStore({fb: [0,1,2]});
const feedback = store.fb;
Strange React not defined error
I get `Invalid left-hand side in assignment expression.` when I assign a value.
selectedRate inside the onClick
even with the arrow function removed, I still get an error.
```jsx
const ratings = [1, 2, 3, 4, 5];...For component not displaying values
Component is called twice when using Suspense, createResource and solid router
How to make Signal/Resource do incremental update
Handling locale dates when SSR
date.toLocaleDateString, however as the page is SSR it is instead showing as the server's locale. Is there a pattern to handle this?Calling database with server actions in Solid Start
Or even connecting directly to a database. (Take caution, opinions on if this is a good idea are mixed. You should consider separating your backend and frontend).
Or even connecting directly to a database. (Take caution, opinions on if this is a good idea are mixed. You should consider separating your backend and frontend).
ReactiveMap
Setting up the Store (static map just for testing)```ts...

Using renderToString in node
styles.map.css is a route param for some reason
routeData function.
```
const routeData = ({ params }) => {
return createServerData$(...Unknown file extension ".ts" for rollup.config.ts
solidjs-community/solid-lib-starter and I'm getting this error. Any help?
Map return from createServerData
Tauri
solid-start to solidjs with success. All of the previous issues i mentioned are now solved and working as expected.
I have a new issue, two in fact. One major and one minor. ...Argument of type 'string' is not assignable to parameter of type 'never'.
Argument of type 'string' is not assignable to parameter of type 'never'....
Accessing cookies in routeData()
Testing SolidStart routes with Vitest