Merge pull request #12196 from DaleSeo/consistnet-link-breaks

Consistent Link Breaks in Code Examples
This commit is contained in:
Michael Shilman 2020-08-23 05:21:04 +08:00 committed by GitHub
commit 901d8aa0a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -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: '😄👍😍💯',};

View File

@ -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: '😄👍😍💯',};

View File

@ -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: '😄👍😍💯',};