Skip to content

Instantly share code, notes, and snippets.

@kobvel
Created November 15, 2017 09:59
Show Gist options
  • Save kobvel/75ac559ea1a658ec65e2743c07fac76e to your computer and use it in GitHub Desktop.
Save kobvel/75ac559ea1a658ec65e2743c07fac76e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Web components loader</title>
<link rel="import" href="./apps/angular-app.html">
<link rel="import" href="./apps/react-app.html">
</head>
<body>
<h1>Hello web-components</h1>
<div>
<button onclick="loadApp('angular-app')">Load Angular app</button>
<button onclick="loadApp('react-app')">Load React app</button>
</div>
<div id="container"></div>
<script src="./node_modules/webcomponents-lite/webcomponents-lite.js"></script>
<script src="./loader.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment