Skip to content

Commit

Permalink
fix(buttonAsLink): prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Protheroe committed May 22, 2023
1 parent cd83c41 commit 5d91acc
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/components/Button/ButtonAsLink.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ const meta: Meta<typeof Component> = {
title: "Buttons/Button As Link",
component: Component,
argTypes: {
label: {
defaultValue: "Click me",
},
variant: {
defaultValue: "minimal",
},
href: {
defaultValue: "/",
},
},
label: {
defaultValue: "Click me",
},
variant: {
defaultValue: "minimal",
},
href: {
defaultValue: "/",
},
},
};

export default meta;
type Story = StoryObj<typeof Component>;

export const ButtonAsLink : Story = {
export const ButtonAsLink: Story = {
args: {
label: "Click me",
variant: "minimal",
href: "/",
label: "Click me",
variant: "minimal",
href: "/",
},
};

0 comments on commit 5d91acc

Please sign in to comment.