0.1.13 #18

Merged
Thilawyn merged 359 commits from next into master 2025-06-18 00:12:19 +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 uuidStream = R.useStreamFromReactiveValues([uuid])
const uuidStreamLatestValue = R.useSubscribeStream(uuidStream) const [uuidStreamLatestValue, pullUuidStream] = R.usePullStream(uuidStream)
const scope = R.useScope([uuid]) const scope = R.useScope([uuid])
@@ -42,6 +42,7 @@ function RouteComponent() {
onNone: () => <></>, onNone: () => <></>,
})} })}
</Text> </Text>
<Button onClick={() => runSync(pullUuidStream)}>Pull UUID</Button>
</Flex> </Flex>
) )
} }