Files
polymer-hot-reloading-example/app/components/example-component/example-component.html
2017-06-17 11:34:14 +02:00

20 lines
414 B
HTML

<link rel="import" href="/polymer/polymer.html">
<dom-module id="example-component">
<template>
<style>
:host {
display: block;
}
</style>
<h1>Example</h1>
<p>This is an example almost empty component</p>
</template>
<script>
Polymer({
is: 'example-component'
});
</script>
</dom-module>