Rocky_Mountain_Vending/.pnpm-store/v10/files/3e/5f7ef4564c1ab453bc054e94a4c744adcb61211794707d14cfce983e9d3fbc31dc2bb9367592a520e45d019c6c01116dc28c41d3e3140fa6d3e14391f58681
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
365 B
Text

import React from "react";
/**
* Render the caption for a month in the calendar.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function MonthCaption(props) {
const { calendarMonth, displayIndex, ...divProps } = props;
return React.createElement("div", { ...divProps });
}
//# sourceMappingURL=MonthCaption.js.map