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.
2 parents 97b4afc + 2876f53 commit 9491765Copy full SHA for 9491765
src/components/Logo/Logo.stories.tsx
@@ -0,0 +1,19 @@
1
+import * as React from "react"
2
+import { Meta, StoryObj } from "@storybook/react"
3
+
4
+import LogoComponent from "."
5
6
+const meta = {
7
+ title: "Atoms / Media & Icons / Logo",
8
+ component: LogoComponent,
9
+} satisfies Meta<typeof LogoComponent>
10
11
+export default meta
12
13
+type Story = StoryObj<typeof meta>
14
15
+export const Logo: Story = {
16
+ render: () => (
17
+ <LogoComponent />
18
+ ),
19
+}
src/components/Logo.tsx renamed to src/components/Logo/index.tsx
0 commit comments