Last active
May 14, 2016 17:14
-
-
Save web-padawan/6b1d8958401dd4d5e68886715f30f4d9 to your computer and use it in GitHub Desktop.
This file contains 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
<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