From a2a390def14110009c1e2f91219f864e26436450 Mon Sep 17 00:00:00 2001 From: Vincenzo Sciangola Date: Sun, 24 Aug 2025 14:19:37 +0200 Subject: [PATCH] Fix container ID mismatch when rendering IngredientsList --- chapter-04/03-react-components/01-components.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter-04/03-react-components/01-components.html b/chapter-04/03-react-components/01-components.html index 4a9ec376..4b56c905 100644 --- a/chapter-04/03-react-components/01-components.html +++ b/chapter-04/03-react-components/01-components.html @@ -30,7 +30,7 @@ ReactDOM.render( React.createElement(IngredientsList, null, null), - document.getElementById("root") + document.getElementById("react-container") );