Skip to content

Commit aa6a3df

Browse files
Move name for React quote in FRAMEWORKS.md (#120)
* Move name for React quote in FRAMEWORKS.md * Update FRAMEWORKS.md
1 parent f1c041e commit aa6a3df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FRAMEWORKS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ Note: **[client]** and **[server]** markers in messages have been added by the p
4949
> 2. Attempt to compile _all_ async/await code that might appear in a React application to automatically pass through the context. Compiling React code for React is one thing, compiling all user code for React is invasive and a non-starter.
5050
>
5151
> That leaves us with needing some built-in way to associate a context across async yield points. Crucially, this is not just a framework concern but something that impacts how users write asynchronous code, since the workarounds are for them to write code differently. We understand that the specific solution here may have performance and/or complexity concerns and are happy to collaborate on alternative implementations if they can provide a similar capability.
52+
>
53+
> — <cite>Joseph Savona, React team</cite>
5254
5355
The following is a quote [from the React docs](https://react.dev/reference/react/useTransition#troubleshooting) showing a developer error that is common enough to be included in their documentation, and that would be solved by browsers providing `AsyncContext` support.
5456
@@ -78,8 +80,6 @@ The following is a quote [from the React docs](https://react.dev/reference/react
7880
> ```
7981
>
8082
> This is a JavaScript limitation due to React losing the scope of the async context. In the future, when AsyncContext is available, this limitation will be removed.
81-
>
82-
> — <cite>Joseph Savona, React team</cite>
8383
8484
## [Solid](https://www.solidjs.com/)
8585

0 commit comments

Comments
 (0)