usePullStream
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2025-05-01 21:08:52 +02:00
parent 284a080f19
commit c34629e20d
3 changed files with 58 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
import { R } from "@/reffuse"
import { createFileRoute } from "@tanstack/react-router"
import { Stream } from "effect"
export const Route = createFileRoute("/streams/pull")({
component: RouteComponent,
})
function RouteComponent() {
const stream = R.useMemo(() => Stream.)
return <div>Hello "/streams/pull"!</div>
}