import { linkTo } from '@storybook/addon-links'; import { hbs } from 'ember-cli-htmlbars'; import { action } from 'storybook/actions'; import { fn } from 'storybook/test'; // More on how to set up stories at: https://storybook.js.org/docs/writing-stories export default { title: 'Example/Button', render: (args) => ({ template: hbs``, context: args, }), argTypes: { label: { control: 'text' }, }, // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/ember/writing-docs/autodocs tags: ['autodocs'], args: { onClick: fn() }, }; // More on writing stories with args: https://storybook.js.org/docs/writing-stories/args export const Text = { args: { label: 'Button', }, }; export const Emoji = { args: { label: '😀 😎 👍 💯', }, }; export const TextWithAction = { render: () => ({ template: hbs` `, context: { onClick: () => action('This was clicked')(), }, }), name: 'With an action', parameters: { notes: 'My notes on a button with emojis', }, }; export const ButtonWithLinkToAnotherStory = { render: () => ({ template: hbs` `, context: { onClick: linkTo('example-button--docs'), }, }), name: 'button with link to another story', };