Install

npm install '@rocicorp/[email protected]'

Summary

(as compared to [email protected])

🎁 Features

Before:

```tsx
useSubscribe(r, async tx => (await tx.get("count")) ?? 0, 0)
```

**Now:**

```tsx
// 0 is returned initially, but also if "count" key is not set.
useSubscribe(r, tx => tx.get("count"), 0)
```

🧰 Fixes

⚠️ Breaking Changes