@reffuse/extension-query 0.1.5 #16

Merged
Thilawyn merged 347 commits from next into master 2025-06-01 05:28:47 +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>
) )
} }