Rocky_Mountain_Vending/.pnpm-store/v10/files/cb/dc98e28562262860f8330a89a8a792b03f65c751772b1f3416426ae2d787dd83102ea72b0e5e1d96039fb0379577c5a9eebb7242c7647f748780274f56a1d0
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

13 lines
No EOL
402 B
Text

import React from "react";
/**
* Render the grid with the weekday header row and the weeks for a specific
* month.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Month(props) {
const { calendarMonth, displayIndex, ...divProps } = props;
return React.createElement("div", { ...divProps }, props.children);
}
//# sourceMappingURL=Month.js.map