mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
export default {
|
|
title: 'Addon/Controls',
|
|
argTypes: {
|
|
label: { type: { name: 'string' } },
|
|
},
|
|
};
|
|
|
|
const ButtonStory = (args) => ({
|
|
template: hbs`<button>{{label}}</button>`,
|
|
context: args,
|
|
});
|
|
|
|
export const Hello = ButtonStory.bind({});
|
|
Hello.args = { label: 'Hello!' };
|
|
|
|
export const Bonjour = ButtonStory.bind({});
|
|
Bonjour.args = { label: 'Bonjour!' };
|