Rocky_Mountain_Vending/.pnpm-store/v10/files/47/b5519793a0425bbbb37e3908cc936aa13759633c9296da232aa8adf89068f8d9076de0b039ed46bbf944af513cfd6c9f79360d2a2756901d40496d79ef466e
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

16 lines
518 B
Text

import React from "react";
import {
DayPicker as DayPickerComponent,
type DayPickerProps
} 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: DayPickerProps) {
return <DayPickerComponent timeZone="utc" {...props} />;
}