Skip to content

Commit

Permalink
chore: Lock date of calendar story
Browse files Browse the repository at this point in the history
  • Loading branch information
jared-dickman committed Jan 25, 2024
1 parent 4cf6c21 commit cd33095
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/data-display/Calendar/Calendar.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import { type Meta, type StoryObj } from '@storybook/react'

import { Calendar } from 'src/components/data-display/Calendar/Calendar'
import dayjs from 'dayjs';

const meta: Meta<typeof Calendar> = {
title: 'Aquarium/Data Display/Calendar',
component: Calendar,

args: {},
args: {
value: dayjs('1/2/2024')
},
}
export default meta

type Story = StoryObj<typeof Calendar>

export const Primary: Story = {}
export const Primary: Story = {}

0 comments on commit cd33095

Please sign in to comment.