From 59982ae073e9afda4370a8a5f1589c65b0d4580d Mon Sep 17 00:00:00 2001 From: Ikram <145692307+ikrammt@users.noreply.github.com> Date: Mon, 15 Apr 2024 18:16:54 +0100 Subject: [PATCH] fix(docs): correct link for 'props' in 'Understanding Dates' guide (#2562) --- 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**.