From 6ae62c105f72840db742ababf9ac073c2a45cc45 Mon Sep 17 00:00:00 2001 From: ksat8384 Date: Mon, 22 Nov 2021 18:48:57 +0530 Subject: [PATCH] Update 01-components.html fix to match the target container with div name [#96] --- 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") );