( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ
<!doctype html>
<html>
<body>
<div id="app"></div>
<script type="module">
import React from "https://esm.sh/react@18";
import ReactDOM from "https://esm.sh/react-dom@18/client";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<h1>Hello React!</h1>);
function App() {
return React.createElement("h1", null, "✅ React is Running Locally on Your Server!");
}
createRoot(document.getElementById("app")).render(React.createElement(App));
</script>
</body>
</html>