Skip to content

Instantly share code, notes, and snippets.

@leadVisionary
Created February 21, 2018 03:47
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 leadVisionary/90f4f7774bcf013fb58c1c2062adeafe to your computer and use it in GitHub Desktop.
Save leadVisionary/90f4f7774bcf013fb58c1c2062adeafe to your computer and use it in GitHub Desktop.
ECMAScript modules part dumb
<html>
<head>
<title>An E-commerce retailer</title>
</head>
<body>
<h1>
Hello <span id="greeting">Placeholder</span>!</h1>
<h2>
Please <a href="https://www.blogger.com/buy/12345">buy</a> this product</h2>
</body>
<script src="greeting.js" type="module"></script>
<script type="module">
import {greetCustomer} from './greeting.js'
greetCustomer(document.querySelector("#greeting"));
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment