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.

);