Page Refresh or Browser Button or ...
window.performance.getEntriesByType("navigation") but when I redirect via navigate('/page2') that api thinks the page was refreshed.
...How to iterate over Object.entries()?
<index> or <for> together with Object.entries(obj)
```
function Example() {
const [schema] = createSignal({'paths':{'/foo':{'a':'a'},'/bar':{'b':'b'}}})...Help with Forward Ref and Ref from solid-primatives
Chart.tsx...
Updating only one property on an object
using the callback to <Show> and update store, results in whole store being set to new value
<Show when={'companyName' in formDataStore && formDataStore}>
{(currentDataStore) => {
return (
<Show when={'companyName' in formDataStore && formDataStore}>
{(currentDataStore) => {
return (
Resource has wrong types?
createEffect, the type of shouldBeUndefinedButItsNot is number, but console writes undefined on first run. Am I misusing createResource?...Where to protect SolidStart routes?
Identifying multiple versions of Solid installed
html not rendering consistently inside span
onFocusOut={() => {
const newText = document.getElementById(id)?.innerHTML
updateNote(id, newText)
}}
...Can't get createServerData$ to work as expected
Typesafe <Show> only when store has data
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
