mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
consistent link breaks
This commit is contained in:
parent
e73beebe33
commit
007fac68a7
@ -9,6 +9,7 @@ const Template = (args: Button) => ({
|
||||
|
||||
export const Primary = Template.bind({});
|
||||
Primary.args = { background="#ff0", label: 'Button' };
|
||||
|
||||
export const Secondary = Template.bind({});
|
||||
Secondary.args = { ...Primary.args, label: '😄👍😍💯',};
|
||||
|
||||
|
@ -7,6 +7,7 @@ const Template = (args) => <Button {...args} />;
|
||||
// Each story then reuses that template
|
||||
export const Primary = Template.bind({});
|
||||
Primary.args = { background="#ff0", label: 'Button' };
|
||||
|
||||
export const Secondary = Template.bind({});
|
||||
Secondary.args = { ...Primary.args, label: '😄👍😍💯',};
|
||||
|
||||
|
@ -7,6 +7,7 @@ const Template: Story<ButtonProps> = (args) => <Button {...args} />;
|
||||
// Each story then reuses that template
|
||||
export const Primary = Template.bind({});
|
||||
Primary.args = { background="#ff0", label: 'Button' };
|
||||
|
||||
export const Secondary = Template.bind({});
|
||||
Secondary.args = { ...Primary.args, label: '😄👍😍💯',};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user