how do i make my component to accept class and classList ?
disposing of a `createRoot` nested inside a `createEffect`?
SSR build failing
esbuild and esbuild-plugin-solid. In order to access solid, I have an import map where solid-js uses npm:solid-js and solid-js/web, ditto.
In order to run the app, I need to import the SSR build. However, the following error occurs
```...solid-router nested routes - access child params from parent component
Math.random() overwritten on hydration
<span class="skeleton-text text-clip whitespace-nowrap">{"a".repeat(7 + Math.floor(Math.random() * 20))}</span>
<span class="skeleton-text text-clip whitespace-nowrap">{"a".repeat(7 + Math.floor(Math.random() * 20))}</span>
how to add package to https://www.solidjs.com/ecosystem?
window.getComputedStyle returns react-style CSSStyleDeclaration?
const style = window.getComputedStyle(node) style has type CSSStyleDeclaration which follows react's camelCase formatting. I could cast it to JSX.CSSProperties but JSX.CSSProperties allow for numbers | string while window.getComputedStyle only returns string.
what would be the solid way to type this?...add fade-in and fade-out animations when navigating routes (using solid-routes)
Loading google fonts
Resource not being called when componet loads
Updating signal value doesn't always update DOM?

vite-template for building libraries
Await Resource
get types of HTMLElement-attributes
React.TextareaHTMLAttributes<HTMLTextAreaElement>?
Can't seem to find anything about in the docs...Passive Event Listeners
onWheel as { passive: true }
```jsx
import "./NewsElements.scss";
import { NewsElement } from "./NewsElement";...Using lifecycle functions in abstract function?
onMount or onCleanup inside some abstracted function made to reuse code, like a hook in react.
Would it work fine so long as the function gets called in a component, or anything else to keep in mind?
And is this something inline with what custom directives like use are designed for, or its unrelated?
...Modals in SolidJS
Portal. Can you help me here :)?
...route not rendering sometimes
index one (home) and the /settings one. here's my root.tsx: https://pastebin.com/K8ykT5C2
here's my settings.tsx:
```ts
export default function Settings() {
return (...
Argument of type 'StoreState' is not assignable to parameter of type 'PartStoreState, layers'
Why dose createServerData$ return undefined
Test: undefined where it should return Test: { Foo: "Bar" }
```
export function routeData() {
const user = createServerData$(async (_, { request }) => {
return {...