From ec6c6739f0aed02a5babc838c7426351ab231b2e Mon Sep 17 00:00:00 2001 From: Jabriel <15688641+jukrb0x@users.noreply.github.com> Date: Tue, 18 Oct 2022 17:14:37 +0800 Subject: [PATCH] fix: broken link for render-and-commt (#5184) --- beta/src/content/learn/keeping-components-pure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/learn/keeping-components-pure.md b/beta/src/content/learn/keeping-components-pure.md index 6d7683e66..dda08c34f 100644 --- a/beta/src/content/learn/keeping-components-pure.md +++ b/beta/src/content/learn/keeping-components-pure.md @@ -81,7 +81,7 @@ If you pass `drinkers={4}`, it will return JSX containing `4 cups of milk`. Alwa Just like a math formula. -You could think of your components as recipes: if you follow them and don't introduce new ingredients during the cooking process, you will get the same dish every time. That "dish" is the JSX that the component serves to React to [render.](render-and-commit) +You could think of your components as recipes: if you follow them and don't introduce new ingredients during the cooking process, you will get the same dish every time. That "dish" is the JSX that the component serves to React to [render.](/learn/render-and-commit)