Add Effect v4 support, Fast Refresh tooling, and revamped docs #56

Merged
Thilawyn merged 133 commits from next into master 2026-07-26 02:32:59 +02:00
Showing only changes of commit 9fb56da120 - Show all commits
+2 -2
View File
@@ -253,11 +253,11 @@ need a lifecycle that is narrower than the whole component instance.
## Useful Effect-FC Hooks
The most common Effect-FC hooks are:
Unlike plain React hooks, Effect-FC hooks return Effects. Use `yield*` to run
them inside the component body.
The most common Effect-FC hooks are:
- `Component.useOnMount`: run an Effect once during the component's first render
after mount, and return its value. The Effect must be synchronous.