Skip to content

Commit 5bc32c5

Browse files
committed
feat(MergeInfographic): add mergeinfographic story [Closes #13242]
1 parent e80543d commit 5bc32c5

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.storybook/i18next.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const ns = [
2020
"page-upgrades",
2121
"page-developers-index",
2222
"page-what-is-ethereum",
23+
"page-upgrades-index"
2324
] as const
2425
const supportedLngs = Object.keys(baseLocales)
2526

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 { langViewportModes } from "../../../.storybook/modes"
4+
5+
import MergeInfographicComponent from "."
6+
7+
const meta = {
8+
title: "Atoms / Media & Icons / MergeInfographic",
9+
component: MergeInfographicComponent,
10+
parameters: {
11+
layout: "none",
12+
chromatic: {
13+
modes: {
14+
...langViewportModes,
15+
},
16+
},
17+
},
18+
} satisfies Meta<typeof MergeInfographicComponent>
19+
20+
export default meta
21+
22+
type Story = StoryObj<typeof meta>;
23+
24+
export const MergeInfographic: Story = {}

0 commit comments

Comments
 (0)