import { Meta, StoryObj } from '@storybook/react-webpack5'; import Button from '../button'; import Tooltip from './Tooltip'; export default { component: Tooltip, title: 'Dialogs/Tooltip', args: { label: 'This is the content', position: 'bottom', }, render: (args) => (
), } satisfies Meta; type Story = StoryObj; export const Basic: Story = {};