mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:31:07 +08:00
Merge pull request #12196 from DaleSeo/consistnet-link-breaks
Consistent Link Breaks in Code Examples
This commit is contained in:
commit
901d8aa0a7
@ -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