Skip to content

Commit

Permalink
storybook: add necessary props
Browse files Browse the repository at this point in the history
  • Loading branch information
algoORgoal committed May 12, 2024
1 parent 98d2a5d commit b8d4baa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stories/BoothItem.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Default: Story = {
name: "컴공주점",
editButton: <BoothEditButton boothId={0} />,
deleteButton: <BoothDeleteButton boothId={0} />,
switchButton: <BoothSwitchButton />,
switchButton: <BoothSwitchButton boothId={0} />,
},
};

Expand All @@ -30,6 +30,6 @@ export const WithOptional: Story = {
location: "청심대 앞",
editButton: <BoothEditButton boothId={0} />,
deleteButton: <BoothDeleteButton boothId={0} />,
switchButton: <BoothSwitchButton />,
switchButton: <BoothSwitchButton boothId={0} />,
},
};

0 comments on commit b8d4baa

Please sign in to comment.