You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would give a "native" way to consume changes.
A possible example of usage...
import { withProps } from 'proppy';
const P = withProps({ counter: 1 });
const p = P();
for await (const value of p.subscribe()) {
console.log({ value });
}
The text was updated successfully, but these errors were encountered:
This would give a "native" way to consume changes.
A possible example of usage...
The text was updated successfully, but these errors were encountered: