mirror of
https://github.com/jlengrand/polymer-hot-reloading-example.git
synced 2026-03-10 15:51:55 +00:00
20 lines
414 B
HTML
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> |