Example work
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-07-01 23:16:33 +02:00
parent 7524094a56
commit 6c8f6622dd
32 changed files with 70 additions and 1308 deletions

View File

@@ -0,0 +1,14 @@
import { FetchHttpClient } from "@effect/platform"
import { Clipboard, Geolocation, Permissions } from "@effect/platform-browser"
import { Layer } from "effect"
import { ReactManagedRuntime } from "effect-fc"
export const AppLive = Layer.empty.pipe(
Layer.provideMerge(Clipboard.layer),
Layer.provideMerge(Geolocation.layer),
Layer.provideMerge(Permissions.layer),
Layer.provideMerge(FetchHttpClient.layer),
)
export const runtime = ReactManagedRuntime.make(AppLive)