Skip to content

Commit 85e0fd6

Browse files
refactor(Simulator/NFTList): show stories with and without list
1 parent a620045 commit 85e0fd6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/components/Simulator/WalletHome/__stories__/NFTList.stories.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,17 @@ const meta = {
2727

2828
export default meta
2929

30-
export const NFTList: StoryObj = {
30+
export const HasList: StoryObj = {
3131
args: {
3232
nfts: Array.from({ length: 5 }, () => ({
3333
title: "Cool art",
3434
image: NFTImage,
3535
})),
3636
},
3737
}
38+
39+
export const NoNFTs: StoryObj = {
40+
args: {
41+
nfts: [],
42+
},
43+
}

0 commit comments

Comments
 (0)