Created
November 15, 2017 09:59
-
-
Save kobvel/75ac559ea1a658ec65e2743c07fac76e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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