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/community/team.md
+4-8
Original file line number
Diff line number
Diff line change
@@ -42,10 +42,6 @@ Current members of the React team are listed in alphabetical order below.
42
42
Josh majored in Mathematics and discovered programming while in college. His first professional developer job was to program insurance rate calculations in Microsoft Excel, the paragon of Reactive Programming which must be why he now works on React. In between that time Josh has been an IC, Manager, and Executive at a few startups. outside of work he likes to push his limits with cooking.
43
43
</TeamMember>
44
44
45
-
<TeamMembername="Kathryn Middleton"permalink="kathryn-middleton"photo="/images/team/kathryn-middleton.jpg"github="kmiddleton14"twitter="kmiddleton14"title="Engineering Manager at Meta">
46
-
Kathryn initially discovered web development when she wanted to make her myspace page look cool. She ended up majoring in Computer Science, and quickly became a huge fan of React building features on the Instagram.com team. Outside of work she loves playing pingpong, teaching spin classes, and going plant shopping.
47
-
</TeamMember>
48
-
49
45
<TeamMembername="Lauren Tan"permalink="lauren-tan"photo="/images/team/lauren.jpg"github="poteto"twitter="potetotes"threads="potetotes"personal="no.lol"title="Engineer at Meta">
50
46
Lauren’s programming career peaked when she first discovered the `<marquee>` tag. She’s been chasing that high ever since. When she’s not adding bugs into React, she enjoys dropping cheeky memes in chat, and playing all too many video games with her partner, and her dog Zelda.
51
47
</TeamMember>
@@ -62,12 +58,12 @@ Current members of the React team are listed in alphabetical order below.
62
58
Mofei started programming when she realized it can help her cheat in video games. She focused on operating systems in undergrad / grad school, but now finds herself happily tinkering on React. Outside of work, she enjoys debugging bouldering problems and planning her next backpacking trip(s).
63
59
</TeamMember>
64
60
65
-
<TeamMembername="Rick Hanlon"permalink="rick-hanlon"photo="/images/team/rickhanlonii.jpg"github="rickhanlonii"twitter="rickhanlonii"threads="rickhanlonii"personal="rickhanlon.codes"title="Engineer at Meta">
66
-
Ricky majored in theoretical math and somehow found himself on the React Native team for a couple years before joining the React team. When he's not programming you can find him snowboarding, biking, climbing, golfing, or closing GitHub issues that do not match the issue template.
61
+
<TeamMembername="Noah Lemen"permalink="noah-lemen"photo="/images/team/noahlemen.jpg"github="noahlemen"twitter="noahlemen"threads="noahlemen"personal="noahle.men"title="Engineer at Meta">
62
+
Noah’s interest in UI programming sparked during his education in music technology at NYU. At Meta, he's worked on internal tools, browsers, web performance, and is currently focused on React. Outside of work, Noah can be found tinkering with synthesizers or spending time with his cat.
67
63
</TeamMember>
68
64
69
-
<TeamMembername="Samuel Susla"permalink="samuel-susla"photo="/images/team/sam.jpg"github="sammy-SC"twitter="SamuelSusla"threads="samuelsusla"title="Engineer at Meta">
70
-
Samuel’s interest in programming started with the movie Matrix. He still has Matrix screen saver. Before working on React, he was focused on writing iOS apps. Outside of work, Samuel enjoys playing beach volleyball, squash, badminton and spending time with his family.
65
+
<TeamMembername="Rick Hanlon"permalink="rick-hanlon"photo="/images/team/rickhanlonii.jpg"github="rickhanlonii"twitter="rickhanlonii"threads="rickhanlonii"personal="rickhanlon.codes"title="Engineer at Meta">
66
+
Ricky majored in theoretical math and somehow found himself on the React Native team for a couple years before joining the React team. When he's not programming you can find him snowboarding, biking, climbing, golfing, or closing GitHub issues that do not match the issue template.
71
67
</TeamMember>
72
68
73
69
<TeamMembername="Sathya Gunasekaran "permalink="sathya-gunasekaran"photo="/images/team/sathya.jpg"github="gsathya"twitter="_gsathya"threads="gsathya.03"title="Engineer at Meta">
{/* TODO T164397693: link to actions documentation once it exists */}
31
31
@@ -59,6 +59,7 @@ If used with a Server Action, `useFormState` allows the server's response from s
59
59
60
60
* `fn`: The function to be called when the form is submitted or button pressed. When the function is called, it will receive the previous state of the form (initially the `initialState` that you pass, subsequently its previous return value) as its initial argument, followed by the arguments that a form action normally receives.
61
61
* `initialState`: The value you want the state to be initially. It can be any serializable value. This argument is ignored after the action is first invoked.
62
+
* **optional** `permalink`: A string containing the unique page URL that this form modifies. For use on pages with dynamic content (eg: feeds) in conjunction with progressive enhancement: if `fn` is a [server action](/reference/react/use-server) and the form is submitted before the JavaScript bundle loads, the browser will navigate to the specified permalink URL, rather than the current page's URL. Ensure that the same form component is rendered on the destination page (including the same action `fn` and `permalink`) so that React knows how to pass the state through. Once the form has been hydrated, this parameter has no effect.
62
63
63
64
{/* TODO T164397693: link to serializable values docs once it exists */}
0 commit comments