import type { Meta, StoryObj } from '@storybook/react' import { MassTimerTooltip } from './MassTimerTooltip' const meta: Meta = { component: MassTimerTooltip, } type Story = StoryObj export default meta export const Default: Story = { args: { nextMass: { id: "12", date: '2024-08-23T15:00:00.000Z', location: { id: "d", name: "St. Richard", address: "Wegstraße 12", updatedAt: "2025-08-23T15:00:00.000Z", createdAt: '2025-08-23T15:00:00.000Z', }, type: "MASS", cancelled: false, updatedAt: '2025-08-23T15:00:00.000Z', createdAt: '2025-08-23T15:00:00.000Z' } }, }