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 4e75876 commit 86162c7Copy full SHA for 86162c7
src/components/Simulator/screens/ConnectWeb3/__stories__/Browser.stories.tsx
@@ -0,0 +1,20 @@
1
+import type { Meta, StoryObj } from "@storybook/react/*"
2
+
3
+import { Browser as Component } from "../Browser"
4
5
+const meta = {
6
+ title:
7
+ "Molecules / Display Content / Simulator / ConnectWeb3 Screen / Browser",
8
+ component: Component,
9
+ decorators: [
10
+ (Story) => (
11
+ <div className="relative h-[500px] w-[322px] overflow-hidden">
12
+ <Story />
13
+ </div>
14
+ ),
15
+ ],
16
+} satisfies Meta<typeof Component>
17
18
+export default meta
19
20
+export const Browser: StoryObj<typeof meta> = {}
0 commit comments