How to make the navbar change color when it's sticky like in the Solidjs homepage?

cant access global signals inside onMount?

createResource does not working with json()
``
let [schema1] = createResource(async _ => await (await fetch(https://api.localhost/`)).json());
let [schema2] = createResource(async _ => await (await fetch(https://api.localhost/)).text())...updating a tree of nodes in a SolidJS store
isExpanded state
i'm having a tough time trying to update the corresponding node. below is the approach i've tried but it doesn't trigger a component update for whatever reason. if there's a totally different way to do this, then i'm all ears
```typescript...Navbar re-renders
Problem with ref
createEffect instead of onMount ?...
CreateStore types not work for array
const [store, setStore] = createStore([{
lotNumber: '',
}]);
const [store, setStore] = createStore([{
lotNumber: '',
}]);
Children helper break Context
MotionOne with solidStart
i expect a refetch with new data when the value of "firma()" changes - but this don't work.
route.outlet is not a function

basic progressively enhanced counter not working
ErrorBoundry component not works
SSR, Reactivity of Signals on onMount
Flickering UI with solidstart
onClick event does not get fired
client:load). You can see my code here:...suspense + store
props.children is not defined.
Using For in combination with createStore array of arrays property
Context.Provider breaks reactivity
const Accordion: ParentComponent<AccordionProps> = (props) => {
const contextValue = createMemo(() => ({ open: props.open, icon: icon(), animate: animate(), disabled: disabled(), })); createEffect(() => console.log("Accordion:", props.open, contextValue())); // 5. return return ( <AccordionContext.Provider value={contextValue()}> <div {...props} class={accordionClasses()}> {props.children} </div> </AccordionContext.Provider> ); }
const Accordion: ParentComponent<AccordionProps> = (props) => {
const contextValue = createMemo(() => ({ open: props.open, icon: icon(), animate: animate(), disabled: disabled(), })); createEffect(() => console.log("Accordion:", props.open, contextValue())); // 5. return return ( <AccordionContext.Provider value={contextValue()}> <div {...props} class={accordionClasses()}> {props.children} </div> </AccordionContext.Provider> ); }