From 00d11c919907dac5d57d0951d3f24779c32d7db9 Mon Sep 17 00:00:00 2001 From: Ola Nordstrom Date: Mon, 21 Nov 2022 11:41:31 -0800 Subject: [PATCH] Fix getElementById reference --- 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") );