Skip to content

Commit 2d10e0f

Browse files
committed
feat(contributors story): create story for contributors component [#13878]
1 parent 0a4693c commit 2d10e0f

File tree

2 files changed

+24
-0
lines changed

2 files changed

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

0 commit comments

Comments
 (0)