Skip to content

Commit

Permalink
fix: Storyの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shun-shobon committed Nov 4, 2024
1 parent 47c2811 commit 8ce237e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/components/ProfileCard.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ export const Default: StoryObj<typeof ProfileCard> = {
playCount: 10,
highScore: 1234,
rank: 3,
characterSetting: {
character: "jiraichan",
accessory: "none",
costume: 0,
hair: "#333333",
},
},
},
};
Expand All @@ -29,6 +35,12 @@ export const NoPlay: StoryObj<typeof ProfileCard> = {
playCount: 0,
highScore: null,
rank: null,
characterSetting: {
character: "jiraichan",
accessory: "none",
costume: 0,
hair: "#333333",
},
},
},
};
Expand All @@ -42,6 +54,12 @@ export const LongName: StoryObj<typeof ProfileCard> = {
playCount: 10,
highScore: 1234,
rank: 3,
characterSetting: {
character: "jiraichan",
accessory: "none",
costume: 0,
hair: "#333333",
},
},
},
};

0 comments on commit 8ce237e

Please sign in to comment.