Skip to content

Instantly share code, notes, and snippets.

@fallengiants
Created December 14, 2016 22:22
Show Gist options
  • Select an option

  • Save fallengiants/8f29465ae1239f41f367899c73381ed7 to your computer and use it in GitHub Desktop.

Select an option

Save fallengiants/8f29465ae1239f41f367899c73381ed7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script src="https://unpkg.com/react@latest/dist/react.js"></script>
<script src="https://unpkg.com/react-dom@latest/dist/react-dom.js"></script>
<script src="https://unpkg.com/babel-standalone@6.15.0/babel.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="root">
<ul
</div>
<script type="text/babel">
$.fn.react = function(babelvalue){
return this.each(function(){
ReactDOM.render(babelvalue, this);
});
}
$('#root').react(<h1>Howday!</h1>);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment