Skip to content

Instantly share code, notes, and snippets.

@web-padawan
Last active May 14, 2016 17:14
Show Gist options
  • Save web-padawan/6b1d8958401dd4d5e68886715f30f4d9 to your computer and use it in GitHub Desktop.
Save web-padawan/6b1d8958401dd4d5e68886715f30f4d9 to your computer and use it in GitHub Desktop.
<link rel="import" href="../../bower_components/polymer/polymer.html">
<dom-module id="my-element">
<template>
<style>
:host {
display: block;
}
</style>
<h1>Hello from my element!</h1>
</template>
<script>
Polymer({
'is': 'my-element'
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment