29 lines
719 B
TypeScript
29 lines
719 B
TypeScript
import type { Meta, StoryObj } from '@storybook/react'
|
|
import { MassTimerTooltip } from './MassTimerTooltip'
|
|
|
|
const meta: Meta<typeof MassTimerTooltip> = {
|
|
component: MassTimerTooltip,
|
|
}
|
|
|
|
type Story = StoryObj<typeof MassTimerTooltip>
|
|
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'
|
|
}
|
|
},
|
|
}
|