import { hbs } from 'ember-cli-htmlbars'; import { action } from '@storybook/addon-actions'; import { linkTo } from '@storybook/addon-links'; // More on how to set up stories at: https://storybook.js.org/docs/7.0/ember/writing-stories/introduction export default { title: 'Example/Button', render: (args) => ({ template: hbs``, context: args, }), argTypes: { label: { control: 'text' }, }, }; // More on writing stories with args: https://storybook.js.org/docs/7.0/ember/writing-stories/args export const Text = { args: { label: 'Button', onClick: action('onClick'), }, }; 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-introduction--page'), }, }), name: 'button with link to another story', };