github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/ui/stories/components/copy-button.stories.js (about)

     1  import hbs from 'htmlbars-inline-precompile';
     2  import { withKnobs, text } from '@storybook/addon-knobs';
     3  
     4  export default {
     5    title: 'Components|Copy Button',
     6    decorators: [withKnobs],
     7  };
     8  
     9  export let CopyButton = () => {
    10    return {
    11      template: hbs`
    12        <h5 class="title is-5">Copy Button</h5>
    13        <span class="tag is-hollow is-small no-text-transform">
    14          {{clipboardText}}
    15          <CopyButton @clipboardText={{clipboardText}} />
    16        </span>
    17        `,
    18      context: {
    19        clipboardText: text('Clipboard Text', 'e8c898a0-794b-9063-7a7f-bf0c4a405f83'),
    20      },
    21    };
    22  };