Skip to content

Instantly share code, notes, and snippets.

@geoyws
Forked from RickWong/react.html
Created October 6, 2016 04:32
Show Gist options
  • Save geoyws/5c0bb5eac1d3397767725c129e4c08a3 to your computer and use it in GitHub Desktop.
Save geoyws/5c0bb5eac1d3397767725c129e4c08a3 to your computer and use it in GitHub Desktop.
Write React apps in 1 HTML file.
<html>
<body>
<div id="react-root"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-with-addons.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.5.2/redux.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.7.7/babel.min.js"></script>
<script id="react-app" type="text/template">
const App = ({name}) => {
return <h1>Welcome to Redux, {name}</h1>;
};
ReactDOM.render(<App name="World" />, document.getElementById("react-root"));
</script>
<script>
eval(Babel.transform(document.getElementById("react-app").innerHTML, {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