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 37ffc161d3 - Show all commits

View File

@@ -6,6 +6,13 @@ import { Console, Effect, Option } from "effect"
import { useEffect, useState } from "react"
interface Node {
readonly value: string
readonly left?: Node
readonly right?: Node
}
const makeUuid = Effect.provide(makeUuid4, GetRandomValues.CryptoRandom)
@@ -32,6 +39,11 @@ function RouteComponent() {
runSync,
), [scopeLayer, runSync])
const nodeRef = R.useRef(() => Effect.succeed<Node>({ value: "prout" }))
const nodeValueRef = R.useSubRefFromPath(nodeRef, ["value"])
return (
<Flex direction="column" justify="center" align="center" gap="2">
<Text>{uuid}</Text>