mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
25 lines
717 B
JavaScript
25 lines
717 B
JavaScript
import { action } from '@storybook/addon-actions';
|
|
import Button from './Button.marko';
|
|
|
|
// More on default export: https://storybook.js.org/docs/marko/writing-stories/introduction#default-export
|
|
export default {
|
|
title: 'Button',
|
|
// More on argTypes: https://storybook.js.org/docs/marko/api/argtypes
|
|
argTypes: {
|
|
label: { control: 'text' },
|
|
},
|
|
};
|
|
|
|
// More on component templates: https://storybook.js.org/docs/marko/writing-stories/introduction#using-args
|
|
const Template = (args) => ({
|
|
component: Button,
|
|
input: args,
|
|
});
|
|
|
|
export const Text = Template.bind({});
|
|
// More on args: https://storybook.js.org/docs/marko/writing-stories/args
|
|
Text.args = {
|
|
label: 'Button',
|
|
onClick: action('onClick'),
|
|
};
|