From ab13899b8ad6ce0d0cb16744e17415de390fb0e0 Mon Sep 17 00:00:00 2001 From: Srajal1311 Date: Wed, 8 Oct 2025 07:49:19 +0530 Subject: [PATCH] docs: fix minor typo in 'Your First Component' page --- src/content/learn/your-first-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/learn/your-first-component.md b/src/content/learn/your-first-component.md index 17fa01e98c4..3ffab1ae92c 100644 --- a/src/content/learn/your-first-component.md +++ b/src/content/learn/your-first-component.md @@ -35,7 +35,7 @@ This markup represents this article `
`, its heading `

`, and an (abb React lets you combine your markup, CSS, and JavaScript into custom "components", **reusable UI elements for your app.** The table of contents code you saw above could be turned into a `` component you could render on every page. Under the hood, it still uses the same HTML tags like `
`, `

`, etc. -Just like with HTML tags, you can compose, order and nest components to design whole pages. For example, the documentation page you're reading is made out of React components: +Just like with HTML tags, you can compose, order and nest components to design whole pages. For example, the documentation page you're reading is made out of React components, Components help you break down your UI into smaller, reusable pieces.: ```js