From e3a67784ac79afd059ec3466f04bdc060826e578 Mon Sep 17 00:00:00 2001 From: "hh.skladby" Date: Mon, 18 May 2026 19:20:05 +0200 Subject: [PATCH 1/2] Obviously a typo: should be adjective "addtional" --- .../ui5-webcomponents-react-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/ui5-webcomponents-react-introduction/ui5-webcomponents-react-introduction.md b/tutorials/ui5-webcomponents-react-introduction/ui5-webcomponents-react-introduction.md index d4f3387c7..ce43eddd6 100644 --- a/tutorials/ui5-webcomponents-react-introduction/ui5-webcomponents-react-introduction.md +++ b/tutorials/ui5-webcomponents-react-introduction/ui5-webcomponents-react-introduction.md @@ -132,7 +132,7 @@ With this you created your first `React` component. To actually render the compo - `Assets.js'`: This includes assets like translation files (CLDR), theming, etc. of the required packages. - `ThemeProvider`: Inter alia, this provider makes your app react to theme and language changes and injects the CSS of __used__ components. - - `StrictMode`: The React `StrictMode` component enables addition development behaviors and warnings for the component tree inside. It is not required, but using it helps find common pitfalls and bugs in development. You can find out more about it [here](https://react.dev/reference/react/StrictMode). + - `StrictMode`: The React `StrictMode` component enables additional development behaviors and warnings for the component tree inside. It is not required, but using it helps find common pitfalls and bugs in development. You can find out more about it [here](https://react.dev/reference/react/StrictMode). - `createRoot`: This function lets you create the React root to display React components inside a browser DOM node ([React docs](https://react.dev/reference/react-dom/client/createRoot)). You will usually add this DOM node inside the `index.html` file. - `App`: A React component. - `index.css`: Global CSS file. From dc66a4c6a3c5376605928a861dcfe78696522c46 Mon Sep 17 00:00:00 2001 From: "hh.skladby" Date: Mon, 18 May 2026 19:21:46 +0200 Subject: [PATCH 2/2] Missing closing ">" in example (spoiling Copy & Paste) --- .../ui5-webcomponents-react-card/ui5-webcomponents-react-card.md | 1 + 1 file changed, 1 insertion(+) diff --git a/tutorials/ui5-webcomponents-react-card/ui5-webcomponents-react-card.md b/tutorials/ui5-webcomponents-react-card/ui5-webcomponents-react-card.md index 6bf61d24a..cae5442f9 100644 --- a/tutorials/ui5-webcomponents-react-card/ui5-webcomponents-react-card.md +++ b/tutorials/ui5-webcomponents-react-card/ui5-webcomponents-react-card.md @@ -179,6 +179,7 @@ And your application like this: onClick={handleHeaderClick} /> } + > ... ```