Last active
November 23, 2023 17:28
-
-
Save mihai-vlc/6c350a4089a5aa99c993f7564754ddc0 to your computer and use it in GitHub Desktop.
react no build step
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from "https://esm.sh/react?dev"; | |
const Title = (await importJSX("./components/Title.jsx")).default; | |
export default function App() { | |
const [count, setCount] = useState(0); | |
function handleClick() { | |
setCount((c) => c + 10); | |
} | |
return ( | |
<> | |
<Title /> | |
<button onClick={handleClick}>Click me {count}</button> | |
</> | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>HTML + CSS</title> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script type="importmap"> | |
{ | |
"imports": { | |
"@jsxImportSource": "https://esm.sh/[email protected]?dev", | |
"react": "https://esm.sh/[email protected]?dev", | |
"react-dom/client": "https://esm.sh/[email protected]/client?dev" | |
} | |
} | |
</script> | |
<script type="module" src="./jsx-loader.js"></script> | |
<script type="module"> | |
import React from "react"; | |
import ReactDom from "react-dom/client"; | |
const App = (await importJSX("./App.jsx")).default; | |
const root = ReactDom.createRoot(document.getElementById('app')); | |
root.render(React.createElement(App)); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { esm } from "https://esm.sh/build"; | |
window.importJSX = async function (url) { | |
const res = await fetch(url); | |
if (!res.ok) { | |
throw new Error(`failed to load ${url}`); | |
} | |
const content = await res.text(); | |
return esm(content); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>HTML + CSS</title> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script type="importmap"> | |
{ | |
"imports": { | |
"@jsxImportSource": "https://esm.sh/[email protected]?dev", | |
"react": "https://esm.sh/[email protected]?dev", | |
"react-dom/client": "https://esm.sh/[email protected]/client?dev" | |
} | |
} | |
</script> | |
<script type="module" src="https://esm.sh/run"></script> | |
<script type="text/jsx"> | |
import ReactDom from "react-dom/client"; | |
import { useState } from 'react'; | |
function App() { | |
const [count, setCount] = useState(0); | |
function handleClick() { | |
setCount(c => c + 1); | |
} | |
return <button onClick={handleClick}>Click me {count}</button>; | |
} | |
const root = ReactDom.createRoot(document.getElementById('app')); | |
root.render(<App />); | |
</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "https://esm.sh/react?dev"; | |
export default function Title() { | |
return <h1>React with NO build tool</h1>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment