@rileybathurst/paddle 1.9.28 → 1.9.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -21,10 +21,27 @@ export const PaddleSunsetTourTimes = ({ nodes }: PaddleSunsetTourTimesTypes) =>
|
|
|
21
21
|
const startTimeSplit = time.startTime.split(':');
|
|
22
22
|
const endTimeSplit = time.endTime.split(':');
|
|
23
23
|
|
|
24
|
+
// Jan 26 - May 31
|
|
25
|
+
// 20:1 - 5:17
|
|
26
|
+
|
|
24
27
|
return (
|
|
25
28
|
<div key={time.id}>
|
|
26
|
-
<
|
|
27
|
-
|
|
29
|
+
<h3 className="date elbrus">
|
|
30
|
+
<strong>
|
|
31
|
+
{startDate.toLocaleDateString("en-US", { month: "short" })}
|
|
32
|
+
</strong>
|
|
33
|
+
{startDate.toLocaleString("en-US", { day: "numeric" })}
|
|
34
|
+
-
|
|
35
|
+
<strong>
|
|
36
|
+
{endDate.toLocaleDateString("en-US", { month: "short" })}
|
|
37
|
+
</strong>
|
|
38
|
+
{endDate.toLocaleString("en-US", { day: "numeric" })}
|
|
39
|
+
</h3>
|
|
40
|
+
<p className="time">
|
|
41
|
+
{startTimeSplit[0]}:{startTimeSplit[1]}
|
|
42
|
+
-
|
|
43
|
+
{endTimeSplit[0]}:{endTimeSplit[1]}
|
|
44
|
+
</p>
|
|
28
45
|
</div>
|
|
29
46
|
)
|
|
30
47
|
})}
|