Todo work
Some checks failed
Lint / lint (push) Failing after 10s

This commit is contained in:
Julien Valverdé
2025-01-15 20:59:07 +01:00
parent 3813e63982
commit 8e6adc6b85
10 changed files with 134 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
import { TodosContext } from "@/todos/reffuse"
import { TodosState } from "@/todos/services"
import { VTodos } from "@/todos/views/VTodos"
import { Container } from "@radix-ui/themes"
import { createFileRoute } from "@tanstack/react-router"
import { Layer } from "effect"
import { useMemo } from "react"
@@ -18,11 +19,11 @@ function Index() {
return (
<div className="container mx-auto">
<Container>
<TodosContext.Provider layer={todosLayer}>
<VTodos />
</TodosContext.Provider>
</div>
</Container>
)
}