1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import type { Meta, StoryObj } from '@storybook/react'; import { Time } from './time'; const meta = { component: Time, title: 'Atoms/Layout/Time', } satisfies Meta<typeof Time>; export default meta; type Story = StoryObj<typeof meta>; export const Example: Story = { args: { date: '2022-03-15 10:44:20', }, };