import type { Meta, StoryObj } from '@storybook/react' import ButtonWithTooltip from './ButtonWithTooltip' const meta: Meta = { component: ButtonWithTooltip, } export default meta type Story = StoryObj; export const Primary: Story = { args: { label: 'test', initialTooltip: { content: 'hi there', localStorageKey: null, }, }, }