Skip to content

Instantly share code, notes, and snippets.

@elrikdante
Forked from RickWong/react.html
Created May 25, 2016 06:17
Show Gist options
  • Save elrikdante/1243f108f060965d72ab30ca521f8d49 to your computer and use it in GitHub Desktop.
Save elrikdante/1243f108f060965d72ab30ca521f8d49 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.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 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="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("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