Created
March 29, 2024 14:22
-
-
Save adrienjoly/5e2d71ac8b1797c3c413bacf3c0615b6 to your computer and use it in GitHub Desktop.
Pure/static HTML page that renders a React app (with JSX) and imports components without build chain nor transpilation.
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> | |
<head> | |
<meta charset="UTF-8" /> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/umd/react.production.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/umd/react-dom.production.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@babel/[email protected]/babel.min.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@mui/[email protected]/umd/material-ui.production.min.js"></script> | |
</head> | |
<body> | |
<div id="root"></div> | |
<script type="text/babel" data-presets="env,react"> | |
function Home() { | |
return ( | |
<div> | |
<h1>Hello, world!</h1> | |
<MaterialUI.Button variant="contained" onClick={() => alert('clicked on button')}> | |
Click me | |
</MaterialUI.Button> | |
</div> | |
); | |
} | |
ReactDOM.render(<Home />, document.getElementById('root')); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment