From fd91c3b12ef5670563e689d190be75ef1f695d1c Mon Sep 17 00:00:00 2001 From: Derek Chen Date: Mon, 5 Feb 2024 23:22:56 -0600 Subject: [PATCH] feat: add story for CalendarGridCell --- .../components/CalendarGridCell.stories.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/stories/components/CalendarGridCell.stories.tsx diff --git a/src/stories/components/CalendarGridCell.stories.tsx b/src/stories/components/CalendarGridCell.stories.tsx new file mode 100644 index 00000000..20ac21d7 --- /dev/null +++ b/src/stories/components/CalendarGridCell.stories.tsx @@ -0,0 +1,19 @@ +// Calendar.stories.tsx +import React from 'react'; +import CalendarCell from '@views/components/common/CalendarGridCell/CalendarGridCell'; +import type { Meta, StoryObj } from '@storybook/react'; + +const meta = { + title: 'Components/Common/CalendarGridCell', + component: CalendarCell, + parameters: { + // Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/configure/story-layout + layout: 'centered', + tags: ['autodocs'], + } +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = {}; \ No newline at end of file