-
Basically, I’m trying to understand how or where the hook `options.__b` gets called. Doing a stack trace does show that it’s called when `options._diff` gets called. But I fail to see the code respons…
-
The latest version of preact added a much appreciated `useId` hook.
When using `preact-ssr-prepass`, `preact-render-to-string`, and `useId` in a typical SSR setup as outlined in the docs, `preact` …
-
voby is perfect for embedding in my application, thank you for making this!
`signal() / atom()` and `atom.value` style getters and setters seem easier to understand, I hope to consider this.
-
twind config
```ts
// /twind.config.ts
export default {
selfURL: import.meta.url,
darkMode: "class",
mode: "silent",
theme: {
"colors": {
"transparent": "transparent",
…
-
Hey 👋
I was trying to understand one of the tests and it seems it's desired that it doesn't re-compute if value of a signal is changed within a computed, but that also prevents other computed to r…
eddyw updated
2 years ago
-
When using `esbuild` with `jsx: transform`, this plugin automatically inject `import React from "react"` which is probably not a good idea as the "classic" mode always required it. In other words, it …
-
Hello there,
first of all: This is a great extension to Preact and just what has been missing to me to start using Preact in the first place, as the whole `Context` concept to achieve similar thing…
-
I have been testing *preact/signals-core* together with *usignal* and *solid-js* but after installing latest my tests, which run just fine with latter two libraries and used to run just fine before la…
-
Vite `preact-ts` starter with React compat.
```tsx
import { signal } from "@preact/signals";
import { Button, css, TextField } from "@mui/material";
import { useState } from "preact/hooks";
c…
-
The basic example is not working on production build in react:
```
const count = useSignal(1);
return (
{count}
count.value++}>INC
);
```
Versions:
```
"@preact/signals-re…