From 877ff41f8b1f221a3dab4e66a89e5ceb0953bbad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santanch=C3=A8?= Date: Thu, 22 Aug 2024 11:42:05 -0300 Subject: [PATCH] update (frameworks/react): decomposing the example --- frameworks/react/1-basic-raw/index.html | 22 +++++++++++++++++++ .../react/{1-basic => 2-basic-jsx}/index.html | 3 +-- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 frameworks/react/1-basic-raw/index.html rename frameworks/react/{1-basic => 2-basic-jsx}/index.html (83%) diff --git a/frameworks/react/1-basic-raw/index.html b/frameworks/react/1-basic-raw/index.html new file mode 100644 index 0000000..e66fb42 --- /dev/null +++ b/frameworks/react/1-basic-raw/index.html @@ -0,0 +1,22 @@ + + + + + React App + + +
+ + + + + + + \ No newline at end of file diff --git a/frameworks/react/1-basic/index.html b/frameworks/react/2-basic-jsx/index.html similarity index 83% rename from frameworks/react/1-basic/index.html rename to frameworks/react/2-basic-jsx/index.html index f603419..e141e27 100644 --- a/frameworks/react/1-basic/index.html +++ b/frameworks/react/2-basic-jsx/index.html @@ -2,7 +2,6 @@ - React App @@ -16,7 +15,7 @@ const { createRoot } = ReactDOM; const root = createRoot(document.getElementById('root')); root.render( - +

The dinosaur jumped into the mud.

);