consistent link breaks

This commit is contained in:
Dale Seo 2020-08-22 16:49:17 -04:00
parent e73beebe33
commit 007fac68a7
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: '😄👍😍💯',};