Skip to content

Instantly share code, notes, and snippets.

@simplesthing
Created January 26, 2015 00:09
Show Gist options
  • Save simplesthing/5c281a0309b05015e8b3 to your computer and use it in GitHub Desktop.
Save simplesthing/5c281a0309b05015e8b3 to your computer and use it in GitHub Desktop.
Polymer Element Boilerplate
<link rel="import" href="../../bower_components/polymer/polymer.html">
<polymer-element name="" attributes="" extends="" noscript="" constructor="">
<template>
<style>
:host {
display: block;
}
</style>
</template>
<script>
Polymer('', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment