You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/blog/2024/04/25/react-19.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -248,7 +248,7 @@ function Comments({commentsPromise}) {
248
248
// NOTE: this will resume the promise from the server.
249
249
// It will suspend until the data is available.
250
250
constcomments=use(commentsPromise);
251
-
returncomments.map(commment=><p>{comment}</p>);
251
+
returncomments.map(comment=><p>{comment}</p>);
252
252
}
253
253
```
254
254
@@ -314,7 +314,7 @@ React 19 includes all of the React Server Components features included from the
314
314
315
315
Bundler and framework support for React Server Components can be built on React 19, but the underlying APIs will not follow semver and may break between minors in React 19.x.
316
316
317
-
To support React Server Components, we recommend pinning to a specific React version, or using the Canary release. We will continue working with bundlers and frameworks to stablize support for React Server Components in future versions.
317
+
To support React Server Components, we recommend pinning to a specific React version, or using the Canary release. We will continue working with bundlers and frameworks to stabilize support for React Server Components in future versions.
318
318
319
319
</Note>
320
320
@@ -495,11 +495,11 @@ You can codemod this pattern with [`no-implicit-ref-callback-return
495
495
496
496
### `useDeferredValue` initial value {/*use-deferred-value-initial-value*/}
497
497
498
-
We've added an `initalValue` option to `useDeferredValue`:
498
+
We've added an `initialValue` option to `useDeferredValue`:
0 commit comments