Skip to content

Commit 86162c7

Browse files
feat(Simulator/screens/Browser): create story
1 parent 4e75876 commit 86162c7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)