PairDrop/app/elements/file-sharing/share-area.html
2015-12-18 17:43:46 +01:00

18 lines
376 B
HTML

<link rel="import" href="file-drop-behavior.html">
<dom-module id="share-area">
<template>
<style>
:host {
display: block;
}
</style>
<content></content>
</template>
<script>
'use strict';
Polymer({
is: 'share-area',
behaviors: [Chat.FileDropBehavior]
});
</script>
</dom-module>