From fa997e2577eeec98f2de19203d311540fba06043 Mon Sep 17 00:00:00 2001 From: Tom Mrazauskas Date: Tue, 26 May 2026 13:58:42 +0300 Subject: [PATCH] fix: update react.dev link --- packages/documentation/copy/en/reference/JSX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/reference/JSX.md b/packages/documentation/copy/en/reference/JSX.md index dee9925ed54f..bfa59d349679 100644 --- a/packages/documentation/copy/en/reference/JSX.md +++ b/packages/documentation/copy/en/reference/JSX.md @@ -66,7 +66,7 @@ This is important for two reasons: 2. The types of the attributes being passed in the JSX element should be looked up differently. Intrinsic element attributes should be known _intrinsically_ whereas components will likely want to specify their own set of attributes. -TypeScript uses the [same convention that React does](http://facebook.github.io/react/docs/jsx-in-depth.html#html-tags-vs.-react-components) for distinguishing between these. +TypeScript uses the [same convention that React does](https://react.dev/learn#components) for distinguishing between these. An intrinsic element always begins with a lowercase letter, and a value-based element always begins with an uppercase letter. ### The `JSX` namespace