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 0a4693c commit 2d10e0fCopy full SHA for 2d10e0f
src/components/Contributors/Contributors.stories.tsx
@@ -0,0 +1,24 @@
1
+import { Meta, StoryObj } from "@storybook/react"
2
+
3
+import ContributorsComponent from "."
4
5
+const meta = {
6
+ title: "Molecules / Navigation / Contributors",
7
+ component: ContributorsComponent,
8
+ parameters: {
9
+ layout: "fullscreen",
10
+ },
11
+ decorators: [
12
+ (Story) => (
13
+ <article className="max-w-3xl scroll-mt-24">
14
+ <Story />
15
+ </article>
16
+ ),
17
+ ],
18
+} satisfies Meta<typeof ContributorsComponent>
19
20
+export default meta
21
22
+type Story = StoryObj<typeof meta>
23
24
+export const Contributors: Story = {}
src/components/Contributors.tsx renamed to src/components/Contributors/index.tsx
0 commit comments