From 3d70ee448103e582284df513e2e2de83cfbedf42 Mon Sep 17 00:00:00 2001 From: soartec-lab Date: Wed, 11 Sep 2024 18:15:06 +0900 Subject: [PATCH] docs: fix name of `MUI` and reference link --- 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..a1474ac7280 100644 --- a/src/content/learn/your-first-component.md +++ b/src/content/learn/your-first-component.md @@ -51,7 +51,7 @@ Just like with HTML tags, you can compose, order and nest components to design w ``` -As your project grows, you will notice that many of your designs can be composed by reusing components you already wrote, speeding up your development. Our table of contents above could be added to any screen with ``! You can even jumpstart your project with the thousands of components shared by the React open source community like [Chakra UI](https://chakra-ui.com/) and [Material UI.](https://material-ui.com/) +As your project grows, you will notice that many of your designs can be composed by reusing components you already wrote, speeding up your development. Our table of contents above could be added to any screen with ``! You can even jumpstart your project with the thousands of components shared by the React open source community like [Chakra UI](https://chakra-ui.com/) and [MUI](https://mui.com/material-ui/). ## Defining a component {/*defining-a-component*/}