From 0c6d760ab571e8536dfc3944ac60323b2c228dfa Mon Sep 17 00:00:00 2001 From: Abdulaziz Sirojiddinov Date: Mon, 9 Mar 2020 21:02:22 +0900 Subject: [PATCH] adding next section url path (#2742) adding next section URL path at the end in order to ease readers follow steps --- content/docs/introducing-jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/introducing-jsx.md b/content/docs/introducing-jsx.md index c9db8028..70538e44 100644 --- a/content/docs/introducing-jsx.md +++ b/content/docs/introducing-jsx.md @@ -177,7 +177,7 @@ const element = { These objects are called "React elements". You can think of them as descriptions of what you want to see on the screen. React reads these objects and uses them to construct the DOM and keep it up to date. -We will explore rendering React elements to the DOM in the next section. +We will explore rendering React elements to the DOM in the [next section](/docs/rendering-elements.html). >**Tip:** >