Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created March 14, 2017 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ianaya89/b6f80f3b775779ce4d0a11dc27245ee2 to your computer and use it in GitHub Desktop.
Save ianaya89/b6f80f3b775779ce4d0a11dc27245ee2 to your computer and use it in GitHub Desktop.
<div id="output">Hello World</div>
<!-- Load Babel -->
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Your custom script here -->
<script type="text/babel">
const getMessage = () => "Hello World";
document.getElementById('output').innerHTML = getMessage();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment