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 0238a37 commit 04592deCopy full SHA for 04592de
src/components/Glossary/GlossaryTooltip/GlossaryTooltip.stories.tsx
@@ -1,3 +1,4 @@
1
+import { Center } from "@chakra-ui/react"
2
import { Meta, StoryObj } from "@storybook/react"
3
4
import GlossaryTooltipComponent from "."
@@ -9,6 +10,13 @@ const meta = {
9
10
termKey: "big-endian",
11
children: "big-endian",
12
},
13
+ decorators: [
14
+ (Story) => (
15
+ <Center boxSize="md">
16
+ <Story />
17
+ </Center>
18
+ ),
19
+ ],
20
} satisfies Meta<typeof GlossaryTooltipComponent>
21
22
export default meta
0 commit comments