From d841e9b1321f42f2b92343d43decc74d5880856b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Thu, 17 Jul 2025 18:00:53 +0200 Subject: [PATCH] Tests --- packages/example/src/routes/index.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/example/src/routes/index.tsx b/packages/example/src/routes/index.tsx index 3d496f7..93e02d1 100644 --- a/packages/example/src/routes/index.tsx +++ b/packages/example/src/routes/index.tsx @@ -15,4 +15,11 @@ export const Route = createFileRoute("/")({ }).pipe( Component.withRuntime(runtime.context) ) + + // component: Component.make("Index")( + // () => Hook.useContext(TodosStateLive, { finalizerExecutionMode: "fork" }), + // Effect.andThen(context => Effect.provide(Component.use(Todos, Todos => ), context)), + // ).pipe( + // Component.withRuntime(runtime.context) + // ) })