0.1.11 #14

Merged
Thilawyn merged 318 commits from next into master 2025-05-19 14:01:41 +02:00
Showing only changes of commit 59b7115d19 - Show all commits

View File

@@ -22,7 +22,7 @@ function RouteComponent() {
), [])
const uuidStream = R.useStreamFromReactiveValues([uuid])
const uuidStreamLatestValue = R.useSubscribeStream(uuidStream)
const [uuidStreamLatestValue, pullUuidStream] = R.usePullStream(uuidStream)
const scope = R.useScope([uuid])
@@ -42,6 +42,7 @@ function RouteComponent() {
onNone: () => <></>,
})}
</Text>
<Button onClick={() => runSync(pullUuidStream)}>Pull UUID</Button>
</Flex>
)
}