import React from "react"; import { DayPicker, TZDate } from "react-day-picker"; const now = new Date(); export function TestCase2833() { const timeZone = "Pacific/Honolulu"; return (

now: {now.toString()}

time-zone: {timeZone}

disabled before: {TZDate.tz(timeZone).toString()}

); }