Best way to implement a dialog in Solid.js
Reactivity when passing props down not reactive on nested component
ParentComponent.tsx
```typescript
...Cannot find package 'solid-start-node' imported from 'solid-start/bin.cjs'
npm init solid@latest, with the options [with-websocket], [ssr], [typescript] - after npm i and npm i --include=dev, npm run dev throws the error from the title (ERR_MODULE_NOT_FOUND)Nested routing not working
How to share .env files among NPM Workspaces?
.env files are read from a workspace root folder (e.g. /packages/foo-app/.env), but the .env files are not read from the root of the npm workspaces.
This leads me to duplicate the .env files for every workspace, or to have some hacky copy script.
How can I have just one set of .env files for all workspaces?...splitProps instead of destructuring?
splitProps work exactly?
```ts
export const ResultDisplay: Component<{ result: Result }> = (props) => {
const [res] = splitProps(props, ["result"]);...How to route in a callback function?
<A> component:
https://github.com/solidjs/solid-router#create-links-to-your-routes
However, how do I route in a callback function? I.e. how do I render some routed component from the onClick callback? That isn't possible?...useRouteData empty on HMR
Don't know why solid context complains it is not called in the right place

Why does routeData() return undefined?
createServerData$ like this:
```
export function routeData() {
return createServerData$(...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)
}}
...