We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdb0eb commit cdcc6edCopy full SHA for cdcc6ed
src/components/Simulator/WalletHome/__stories__/TokenBalanceList.stories.tsx
@@ -0,0 +1,18 @@
1
+import type { Meta, StoryObj } from "@storybook/react"
2
+
3
+import { defaultTokenBalances } from "../../constants"
4
+import { TokenBalanceList as Component } from "../TokenBalanceList"
5
6
+const meta = {
7
+ title:
8
+ "Molecules / Display Content / Simulator / WalletHome / TokenBalanceList",
9
+ component: Component,
10
+} satisfies Meta<typeof Component>
11
12
+export default meta
13
14
+export const TokenBalanceList: StoryObj<typeof meta> = {
15
+ args: {
16
+ tokenBalances: defaultTokenBalances,
17
+ },
18
+}
0 commit comments