Example cleanup
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-08-07 04:58:56 +02:00
parent 53bceb3a8a
commit d38a5a4afd
5 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ import { Todo } from "./Todo"
import { TodosState } from "./TodosState.service"
export class Todos extends Component.make(function* Todos() {
export class Todos extends Component.make(Effect.fnUntraced(function* Todos() {
const state = yield* TodosState
const [todos] = yield* Hooks.useSubscribeRefs(state.ref)
@@ -30,4 +30,4 @@ export class Todos extends Component.make(function* Todos() {
</Flex>
</Container>
)
}) {}
})) {}