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
To fix, you need to pass a promise from a Suspense powered library or framework that supports caching for promises. In the future we plan to ship features to make it easier to cache promises in render.
Copy file name to clipboardExpand all lines: src/content/community/team.md
+1-25Lines changed: 1 addition & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,8 @@ React 核心团队成员全职致力于核心组件 API 的开发,负责 React
22
22
Dan 在意外发现 Microsoft PowerPoint 内部的 Visual Basic 后进入了编程行业。他发现了自己的真正使命,就是将 [Sebastian](#sebastian-markbåge) 的推特转化为长篇博客文章。Dan 偶尔会通过整局游戏都躲在草丛里的方式,在《堡垒之夜》中赢得胜利。
23
23
</TeamMember>
24
24
25
-
<<<<<<< HEAD
26
-
<TeamMembername="Eli White"permalink="eli-white"photo="/images/team/eli-white.jpg"github="TheSavior"twitter="Eli_White"threads="elicwhite"title="Engineering Manager at Meta">
27
-
Eli 因为在中学时期的黑客行为被学校暂时开除,从此踏入了编程的世界。自 2017 年起,他就一直致力于 React 和 React Native 的工作。他是个美食爱好者,特别喜欢冰淇淋和苹果派。你常常能发现 Eli 在尝试一些别出心裁的活动,如跑酷、室内跳伞,以及空中丝绸表演。
28
-
=======
29
25
<TeamMembername="Eli White"permalink="eli-white"photo="/images/team/eli-white.jpg"github="elicwhite"twitter="Eli_White"threads="elicwhite"title="Engineering Manager at Meta">
30
-
Eli got into programming after he got suspended from middle school for hacking. He has been working on React and React Native since 2017. He enjoys eating treats, especially ice cream and apple pie. You can find Eli trying quirky activities like parkour, indoor skydiving, and aerial silks.
31
-
>>>>>>> 3bb7a4eb249b25ef6b47e1664d8985d4813c5f80
26
+
Eli 因为在中学时期的黑客行为被学校暂时开除,从此踏入了编程的世界。自 2017 年起,他就一直致力于 React 和 React Native 的工作。他是个美食爱好者,特别喜欢冰淇淋和苹果派。你常常能发现 Eli 在尝试一些别出心裁的活动,如跑酷、室内跳伞,以及空中丝绸表演。
32
27
</TeamMember>
33
28
34
29
<TeamMembername="Hendrik Liebau"permalink="hendrik-liebau"photo="/images/team/hendrik.jpg"github="unstubbable"bsky="unstubbable.bsky.social"twitter="unstubbable"title="Engineer at Vercel">
@@ -71,13 +66,8 @@ React 核心团队成员全职致力于核心组件 API 的开发,负责 React
<TeamMembername="Noah Lemen"permalink="noah-lemen"photo="/images/team/noahlemen.jpg"github="noahlemen"twitter="noahlemen"threads="noahlemen"personal="noahle.men"title="Engineer at Meta">
<TeamMembername="Pieter Vanderwerff"permalink="pieter-vanderwerff"photo="/images/team/pieter.jpg"github="pieterv"threads="pietervanderwerff"title="Engineer at Meta">
79
70
Pieter studied building science but after failing to get a job he made himself a website and things escalated from there. At Meta, he enjoys working on performance, languages and now React. When he's not programming you can find him off-road in the mountains.
80
-
>>>>>>> 3bb7a4eb249b25ef6b47e1664d8985d4813c5f80
81
71
</TeamMember>
82
72
83
73
<TeamMembername="Rick Hanlon"permalink="rick-hanlon"photo="/images/team/rickhanlonii.jpg"github="rickhanlonii"twitter="rickhanlonii"threads="rickhanlonii"bsky="ricky.fm"title="Engineer at Meta">
@@ -88,13 +78,6 @@ React 核心团队成员全职致力于核心组件 API 的开发,负责 React
88
78
Ruslan's introduction to UI programming started when he was a kid by manually editing HTML templates for his custom gaming forums. Somehow, he ended up majoring in Computer Science. He enjoys music, games, and memes. Mostly memes.
89
79
</TeamMember>
90
80
91
-
<<<<<<< HEAD
92
-
<TeamMembername="Sathya Gunasekaran "permalink="sathya-gunasekaran"photo="/images/team/sathya.jpg"github="gsathya"twitter="_gsathya"threads="gsathya.03"title="Engineer at Meta">
<TeamMembername="Sebastian Markbåge"permalink="sebastian-markbåge"photo="/images/team/sebmarkbage.jpg"github="sebmarkbage"twitter="sebmarkbage"threads="sebmarkbage"title="Engineer at Vercel">
99
82
Sebastian 主修心理学。他通常比较沉默寡言。即使他说些什么,我们其他人通常也要等几个月后才能理解他的意思。他的姓氏正确的发音是“mark-boa-geh”,但出于实用考虑,他接受了“mark-beige”的发音——这也是他处理 React 问题的方式。
100
83
</TeamMember>
@@ -111,13 +94,6 @@ React 核心团队成员全职致力于核心组件 API 的开发,负责 React
<TeamMembername="Yuzhi Zheng"permalink="yuzhi-zheng"photo="/images/team/yuzhi.jpg"github="yuzhi"twitter="yuzhiz"threads="yuzhiz"title="Engineering Manager at Meta">
1. The current state. During the first render, it will match the `initialState` you have passed. After the action is invoked, it will match the value returned by the action.
76
-
2. A new action that you can pass as the `action` prop to your `form` component or `formAction` prop to any `button` component within the form. The action can also be called manually within [`startTransition`](/reference/react/startTransition).
77
-
3. The `isPending` flag that tells you whether there is a pending Transition.
1. The <CodeStep step={1}>current state</CodeStep> of the form, which is initially set to the <CodeStep step={4}>initial state</CodeStep> you provided, and after the form is submitted is set to the return value of the <CodeStep step={3}>action</CodeStep> you provided.
116
-
2. A <CodeStep step={2}>new action</CodeStep> that you pass to `<form>` as its `action` prop or call manually within `startTransition`.
117
-
3. A <CodeStep step={1}>pending state</CodeStep> that you can utilise while your action is processing.
0 commit comments