File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
src/components/MergeInfographic Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export const ns = [
20
20
"page-upgrades" ,
21
21
"page-developers-index" ,
22
22
"page-what-is-ethereum" ,
23
+ "page-upgrades-index"
23
24
] as const
24
25
const supportedLngs = Object . keys ( baseLocales )
25
26
Original file line number Diff line number Diff line change
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 = { }
You can’t perform that action at this time.
0 commit comments