From 3e139a940b7a3817bfb29de58173ce00befd8e12 Mon Sep 17 00:00:00 2001 From: ikrammt <145692307+ikrammt@users.noreply.github.com> Date: Sun, 7 Apr 2024 02:05:26 +0100 Subject: [PATCH] fix(docs): correct link for 'props' in 'Understanding Dates' guide --- stories/guides/Dates.stories.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stories/guides/Dates.stories.mdx b/stories/guides/Dates.stories.mdx index 0323d1f76..b87727da2 100644 --- a/stories/guides/Dates.stories.mdx +++ b/stories/guides/Dates.stories.mdx @@ -5,7 +5,7 @@ import LinkTo from '@storybook/addon-links/react' # Understanding Dates -Big Calendar is all about dates and times. Probably one of the easiest things that beginners miss, when first implementing Big Calendar, is that we **require** true JS [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) objects in our props and `event` definitions. +Big Calendar is all about dates and times. Probably one of the easiest things that beginners miss, when first implementing Big Calendar, is that we **require** true JS [Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) objects in our props and `event` definitions. It is **up to the developer** to handle translating date/time values **to and from JS `Date` format**.