Update actions/checkout action to v7 - autoclosed #53

Closed
renovate-bot wants to merge 36 commits from renovate/actions-checkout-7.x into master
Showing only changes of commit 88b3a1c98a - Show all commits
+5
View File
@@ -89,6 +89,11 @@ Use `Component.make` when you want automatic tracing spans, or
`Component.makeUntraced` when you only want the component behavior. This creates
an Effect-FC component, not a plain React component yet.
The Effect run during render must be synchronous. Effect-FC follows React's
render model, so component bodies should produce JSX without waiting on async
work. Use lifecycle hooks, callbacks, queries, or other Effect-FC helpers for
async work that happens outside render.
```tsx title="src/HelloView.tsx"
import { Effect } from "effect"
import { Component } from "effect-fc"