Ref's parentElement
Get array of matched nested routes
@solid/router and would like to create a way to build breadcrumbs based on the nested routes I'm in, similar to useMatches() in Remix. Even if it just returned the simple array of matched routes, I could assign a key to each route and find a simple way to get a title and icon from there for breadcrumbs. I've searched through GitHub and here in Discord to find previous conversations and none of them seemed to find a solution, or at least didn't check back in to share.
Has anyone done this or have good ideas of where to start building from scratch?
Here's an alternate solution, but I don't want to get into portals and pushing to the array from the routes themselves: https://stackblitz.com/edit/solidjs-templates-wwykia?file=src%2Froutes%2Fone%2Ftwo%2Fthree.tsx...Issues with peer dependencies found
Return non DOM element as component with hyper dom expressions
Using babel-preset-solid in browser

porting over some ssr react code, getting different behavior

createSignal + createRenderEffect
Binding to component onClick
onClick property of a custom component.
I understand this is doable for a regular HTML element such as a button but how can I achieve the same for a custom component?
e.g. <CustomImage onClick={handleMouseClick} /> ?...Solidjs vs Astro with Solidjs
html range input doesn't work correctly inside <Dynamic> on android devices
Router primitives can be only used in side a Route.

Getting Object.hasOwn is not a function on older browsers. Attaching the trace

Style attribute not updating in Safari
style attribute is not updating. I've got it down to
<div data-foo={`width: ${width()}`} style={`width: ${width()}`}>
<div data-foo={`width: ${width()}`} style={`width: ${width()}`}>
Server Actions and Cookies sending error: Cannot set headers after they are sent to the clien
how to use bun:sqlite without it leaking to the browser?
Solid +Astro SSR + Data Fetching on hydration
Is it ok to use a global store to persist component state between mounts?
Kobalte 13.x update issue

Tagged Template Literals - Why is unwrapped props value reactive?
API route in Route Group not picked up?
npm init solid@latest and create the file apiget.ts
```JSX
export function GET() {
return new Response('Hello World');...