feat: calendar matchings (#173)

* feat: calendar matchings

* fix: build

* refactor: resolve pr comments

* fix: destrucure editorRef

---------

Co-authored-by: doprz <52579214+doprz@users.noreply.github.com>
This commit is contained in:
Razboy20
2024-03-17 00:32:50 -05:00
committed by GitHub
parent df1849180d
commit 791a42bcd4
23 changed files with 243 additions and 410 deletions

View File

@@ -10,6 +10,10 @@ const meta = {
layout: 'centered',
tags: ['autodocs'],
},
args: {
row: 0,
col: 0,
},
} satisfies Meta<typeof CalendarCell>;
export default meta;

View File

@@ -1,6 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react';
import { CalendarSchedules } from '@views/components/calendar/CalendarSchedules/CalendarSchedules';
import React from 'react';
const meta = {
title: 'Components/Calendar/CalendarSchedules',
@@ -9,11 +8,6 @@ const meta = {
layout: 'centered',
tags: ['autodocs'],
},
render: args => (
<div>
<CalendarSchedules {...args} />
</div>
),
} satisfies Meta<typeof CalendarSchedules>;
export default meta;