Post work
Some checks failed
Lint / lint (push) Failing after 8s

This commit is contained in:
Julien Valverdé
2025-01-14 17:09:04 +01:00
parent 249de93047
commit 671a80b6ff
9 changed files with 54 additions and 2 deletions

View File

@@ -5,9 +5,12 @@ import { createRoot } from "react-dom/client"
import "./index.css"
import { Reffuse } from "./reffuse"
import { routeTree } from "./routeTree.gen"
import { FetchData } from "./services"
const layer = Layer.empty
const layer = Layer.empty.pipe(
Layer.provideMerge(FetchData.mockLayer)
)
const router = createRouter({ routeTree })