Skip to content

Instantly share code, notes, and snippets.

@kikill95
Created November 6, 2015 11:11
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 kikill95/949c8b34277d3a7543f8 to your computer and use it in GitHub Desktop.
Save kikill95/949c8b34277d3a7543f8 to your computer and use it in GitHub Desktop.
Kirill G. - little dive into Polymer
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Polymer Starter Kit</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<link rel="import" href="test/my-el-0.html">
<link rel="import" href="test/my-el-1.html">
<link rel="import" href="test/my-el-2.html">
</head>
<body>
<my-el-0></my-el-0>
<my-el-1></my-el-1>
<my-el-2 owner="User"></my-el-2>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment