-
The basic example is not working on production build in react:
```
const count = useSignal(1);
return (
{count}
count.value++}>INC
);
```
Versions:
```
"@preact/signals-re…
-
i tryed to install `"@preact/signals-react": "^1.0.0",` using `pnpm 7.11.0` and got the following error:
```
.
└─┬ @preact/signals-react 1.0.0
└── ✕ unmet peer react@"17.x | 18.x": found 17.0…
-
Hi, I'm playing around with Preact Signals and have a question about an interesting behavior I noticed.
The behavior is a difference between `signal` and `computed`.
Effects that observe `signal…
-
I just saw Preact released a signals library that is UI independent. The signals are basically an object with a value property. I was wondering what the best way would be to connect them to Tweakpane?
-
Tried something like this:
```
import type { ReadonlySignal } from '@preact/signals';
import type { JSX } from 'preact';
type HandProps = {
length: number;
limit?: number;
stationary?: …
high1 updated
2 years ago
-
I've tried Signal succesfully with Angular and React, now I'm testing with Solidjs and looks not rerendering, am I doing something wrong?
https://codesandbox.io/s/solidjs-starter-template-forked-m…
-
Not sure if this is relevant for µsignal, please close if not.
@preact/signals output:
```shell
Activating: red
Red is off
Red is on
Activating: green
Green is on
Green is off
Activating:…
-
Current type definitions for Preact don't allow the use of a signal in the `value` prop of an `` element, like for example when trying to create a typical two-way data binding. Attempting to do someth…
Fry98 updated
2 years ago
-
The "Local state with signals" section covers only `useSignal` and `useComputed` - it doesn't cover effects triggered by local signals.
Can we use normal `useEffect` for that?
Would you specify …
-
**Describe the bug**
When using the `on:event` syntax on HTML elements in JSX in TypeScript the props are considered invalid:
```typescript
null} />
```
```
(JSX attribute) on:click: () => …