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

This commit is contained in:
Julien Valverdé
2025-02-27 01:19:09 +01:00
parent ae815553f2
commit 7c99d1ff3d
6 changed files with 81 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import { HttpClient } from "@effect/platform"
import { Clipboard, Geolocation, Permissions } from "@effect/platform-browser"
import { LazyRefExtension } from "@reffuse/extension-lazyref"
import { QueryExtension } from "@reffuse/extension-query"
import { Reffuse, ReffuseContext } from "reffuse"
@@ -13,6 +14,7 @@ export const GlobalContext = ReffuseContext.make<
export class GlobalReffuse extends Reffuse.Reffuse.pipe(
Reffuse.withExtension(LazyRefExtension),
Reffuse.withExtension(QueryExtension),
Reffuse.withContexts(GlobalContext),
) {}