Rocky_Mountain_Vending/.pnpm-store/v10/files/99/4db2733541b1d63f864cf1d8299b37e894fdceed73c6ec3aba7a2fc06e8e13e85f3a6e8a560ccf99ff8018fd377de6803a230222b8de427d94e8a91a28281e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

12 lines
No EOL
530 B
Text

import React from "react";
import { DayPicker as DayPickerComponent } from "./index.js";
/**
* @deprecated Use the `timeZone` prop instead of this function. This function
* wraps the DayPicker component and sets the `timeZone` to "utc".
* @param props - The props to pass to the DayPicker component.
* @returns The DayPicker component with the `timeZone` set to "utc".
*/
export function DayPicker(props) {
return React.createElement(DayPickerComponent, { timeZone: "utc", ...props });
}
//# sourceMappingURL=utc.js.map