share-area.html 376 B

123456789101112131415161718
  1. <link rel="import" href="file-drop-behavior.html">
  2. <dom-module id="share-area">
  3. <template>
  4. <style>
  5. :host {
  6. display: block;
  7. }
  8. </style>
  9. <content></content>
  10. </template>
  11. <script>
  12. 'use strict';
  13. Polymer({
  14. is: 'share-area',
  15. behaviors: [Chat.FileDropBehavior]
  16. });
  17. </script>
  18. </dom-module>