-
-
Save iamralch/02f3e83e1a2e2ab8eebf33c6957b3404 to your computer and use it in GitHub Desktop.
React without Webpack
This file contains hidden or 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
const App = ({name}) => { | |
return ( | |
<h1>Hello {name}</h1> | |
); | |
}; | |
ReactDOM.render(<App name="World" />, document.getElementById("App")); |
This file contains hidden or 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
<html> | |
<body> | |
<div id="App"></div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.0.1/react-with-addons.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.0.1/react-dom.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.7.7/babel.min.js"></script> | |
<script> | |
fetch("./app.js").then(function (response) { | |
response.text().then(function (js) { | |
eval(Babel.transform(js, {presets: ['es2015', 'react']}).code); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment