Using SolidJS Playground in custom docs
solid-repl has been published to npm, but it hasn't been updated in a year. Meanwhile solid-playground seems to be chugging along, but it's not published.
How can I use solidjs playground (or an equivalent live code editor) for my documentation? Thanks in advance!...Favorite way of dealing with typescripts `!`-forbidden warnings
Manually mounting SolidJS component within HTML component via `render`
template properties below:
```yaml
group/main:
template: |
<div class="main">...Solidjs and RxJS compatibility
Question on Functions vs Components
Is the createUniqueId-helper safe to use?
Quiz on SolidJS
FileRoutes props for app-wide signals
Yew (Rust π¦) to Solid with SolidStart.
In my Yew app, I have a bunch of app-wide properties....Nested For Loop?
Is there some cases where createResource doesn't handle errors ?
Are global signals ever reset between test runs?
How to have a default layout for all routes?
@solidjs/router and I want to have a default layout to have a default background color. How do I do that?Why does effect re-fire? How to use createStore values in effect correctly?
Access native html dialogs show/close methods in clickHandler
window.myModal.show()). However this is pretty error prone and also doesn't play well with testing.
Is there a recommended way on how to use these without accessing the window? I thought of using refs but apparently these refs are not set, when my handler functions are created, so they stay undefined. π€ ...Uncaught ReferenceError: createDeepSignal is not defined
createDeepSignal? I feel like I'm making a silly error somewhere in here haha. Any help would be greatly appreciated! My code is below:
```ts
import { createResource, createSignal } from "solid-js";
import { createStore } from "solid-js/store";...__vite_ssr_import_0__.default is not a function only on API endpoints
Why is storageSignal possibly null?
theme can be null:
```js
const darkMode = document.documentElement.classList.contains("dark") ? "dark" : "light"
...Is there a way to debug how callbacks are called, when firing an event with testing-library?[SOLVED]
fireEvent.click() on a button.
Some background: I am running solid inside a Tauri-Application which works very well....Understanding Suspense in SolidStart SSR
createServerData$ to resolve successfully first before showing the page (just like on the first page load)?
2) I add a button to trigger refetchRouteData. However, when I click on the button for createServerData$ and createRouteData , their Suspense don't show fallback. I thought the serverData and clientData are Resource and so, I can show the loading state with serverData.loading, just like how compData behaves, but this is not the case. How can I make them show the loading state? ...SolidStart debugging in VSCode