Skip to content

Instantly share code, notes, and snippets.

@jasper-lyons
Created July 9, 2015 16:17
Show Gist options
  • Save jasper-lyons/0c5d98be3c3fd88d85a1 to your computer and use it in GitHub Desktop.
Save jasper-lyons/0c5d98be3c3fd88d85a1 to your computer and use it in GitHub Desktop.
Basic Webcomponent
<link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html">
<dom-module id="my-component">
<template>
<content></content>
</template>
<style>
</style>
<script>
Polymer({
is: "my-component"
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment